Skip to content
Open
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
51 changes: 46 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,53 @@
<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
<header class="header">
<div class="top">
<img src="images/brand.png" alt="Instagram Logo">
<button>
<img src="images/home.png" alt="Instagram">
<p>Log In</p>
</button>
</div>
</header>

<div class="middleImages">
<img src="images/phones.png" alt="Phones with Instagram" />
<section class="info">
<div>
<h2>Capture and Share the World's Moments</h2>
<p>Instagram is a <strong>fast</strong>, <strong>beautiful</strong> and <strong>fun</strong> 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
&mdash; it's that easy. You can even share to 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 class="buttons">
<button>
<img src="images/badge-iphone.png" alt="Download on the App Store Icon" />
</button>
<button>
<img src="images/badge-android.png" alt="Get it on Google Play Icon" />
</button>
</div>
</div>
</section>
</div>

<footer>
<ul>
<li><a href="">About Us</a></li>
<li><a href="">Support</a></li>
<li><a href="">Blog</a></li>
<li><a href="">Press</a></li>
<li><a href="">API</a></li>
<li><a href="">Jobs</a></li>
<li><a href="">Privacy</a></li>
<li><a href="">Terms</a></li>
<li>&copy; 2014 Instagram</li>
</ul>
</footer>
</body>
</html>
103 changes: 103 additions & 0 deletions styles/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,106 @@ body {
font: 200 16px/1.5 "Helvetica Neue", Helvetica, Arial, sans-serif;
margin: 0;
}

header {
display: flex;
padding: 60px 25px;
justify-content: space-between;
width: 100%;
height: 150px;
background: linear-gradient(to bottom, #5c7e9b, #26425b);
}

.top {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
padding-top: 60px;
margin-left: 370px;
gap: 60px;
}

header>div>button {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
border: 1px solid #346289;
box-shadow: #346289;
border-radius: 5px;
color: #f9fcfd;
font-size: 20px;
margin-right: 0px;
background: linear-gradient(to bottom, #668eb1, #355c7d);
margin-right: 10px;
}

.middleImages {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
margin-top: -40px;
}

.middleImages>img{
margin-top: -120px;
height: 600px;
}

.info {
background-color: white;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
padding: 0px 40px 40px 40px ;
margin-left: 55px;
width:430px;
height: 470px;
}

h2 {
font-size: 30px;
color: #1c5380;
}

.buttons {
display: flex;
flex-direction: row;
align-items:flex-start;
justify-content: start;
margin-top: 45px;
}

.buttons>button {
background: none;
border: none;
margin-right: 25px;
}

footer>ul {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
list-style: none;
margin: 50px 50px;
padding: 10px 20px;
}

footer>ul>li {
text-transform: uppercase;
font-size: 14px;
text-align: center;
font-weight: bold;
color: grey;
padding: 10px;;
}

footer>ul>li>a {
color: #1c5380;
text-decoration: none;
}