Skip to content
Open

Solved #2854

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 53 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,59 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Instagram Clone</title>
<!-- don't forget to link your styles -->
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
Instagram Capture and Share the World's Moments Instagram is a fast, beautiful and fun way to share your life with
friends and family. Take a picture or video, choose a filter to transform its look and feel, then post to Instagram
&mdash; it's that easy. You can even share to Facebook, Twitter, Tumblr and more. It's a new way to see the world.
Oh yeah, did we mention it's free? Download on the App Store Get it on Google Play About Us Support Blog Press API
Jobs Privacy Terms &copy; 2014 Instagram
</body>
<Section class="main">
<div class="content">
<div class="phone-image">
<img src="./images/phones.png" alt="#">
</div>

<div class="insta-body">
<div class="login"> <img src="./images/brand.png" alt="brand">
<article ><button class="login-button"><img src="./images/home.png" alt="home"> <b>Log in</b></button></article>
</div>
<div class="info">
<div class="text">
<h2> Capture and Share <br>the World's Moments</h2>
<p> Instagram is <strong>fast, beautiful</strong> and fun way to share your life with friends and family.</p>
<p>Take a picture or video, choose a filter to transform its look and feel, then post to Instagram - it's that easy. You can even share through Facebook, Twitter, Tumblr and more. It's a new way to see the world. </p>
<p>Oh yeah, did we mention it's free? </p>
</div>

</div>
<div class="icons">
<img src="/images/badge-iphone.png">
<img src="/images/badge-android.png" class="android">
</div>
</div>
</div>
<footer>
<div>
<ul>
<li> About Us</li>
<li> Support</li>
<li> Blog</li>
<li> Press</li>
<li>Api</li>
<li>Jobs</li>
<li>Privacy</li>
<li>Terms</li>
<li> &copy; 2014 Instagram</li>
</ul>
</div>

</footer>
</div>
</div>




</Section>


</body>
</html>

100 changes: 100 additions & 0 deletions styles/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,107 @@ dark blue: #06365f
light blue: #1c5380
*/


body {
font: 200 16px/1.5 "Helvetica Neue", Helvetica, Arial, sans-serif;
margin: 0;
height: 1400px;
background: linear-gradient(to bottom, #1c5380 25%, white 15%);
border: 5px solid purple;

}
.content {
border: 10px solid brown;
width: 1250px;
display: flex;
justify-content: space-around;

}
/*--------------------------------------- MAIN BOX ------------------------*/
.main {
border: 50px solid;
width: 1300px;
height: 1500px;
display: flex;
flex-direction: column;
justify-content: space-between;
}

/* ------------------------------------IPHONE IMAGE---------------------- */
.phone-image{
padding: 150px 0 0 20px ;
}

/* ------------------------------------Insta Body------------------------- */
.insta-body{
border: 2px solid yellow;
width: 600px;
margin-top: 160px;
height: 500px;

}

.login{
display: flex;
justify-content: space-between;
align-items: center;
border: 2px solid green;
width: 600px;
}

article{
border: 2px solid red;
display: flex;
justify-content: center;
align-items: center;
padding: 15px;
margin: 0px;
}

.login-button{
background-color: #1c5380;
color: white;
padding: 15px;
width: 140px;
font-size: larger;
display: flex;
justify-content: space-between
}

.info {
border: 2px solid orange;
height: 340px;
background-image: url("/images/frame.png");
background-repeat: no-repeat;
background-size: contain;
display: flex;
justify-content: center;
}
.frame {
width: 600px;
}

.text {
border: 1px solid aqua;
width: 580px;
padding: 20px 30px 0 40px;
margin-top: 10px;
}

h2 {
color: #06365f;
}

.icons {
margin-left: 40px;
}

.android {
margin-left: 20px;
}

ul {
border: 1px solid pink;
list-style: none;
display: flex;
}