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
42 changes: 42 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,46 @@ body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 16px;
margin: 0;
background: linear-gradient(#06365f, white);
}

footer> nav {
text-align: center;
position: sticky;
margin-bottom: 50px;

}

nav> a {
text-decoration: none;
color: #1c5380;
}

h2 {
color: #06365f;
}

#home{
float: right;
margin-top: 20px;
}

#copyright {
color: grey;
}

.columns{
display: flex;
}
.content {
display: inline;
float: right;
margin-top: 100px;
margin-right: 175px;
margin-bottom: 100px;
}

.sidepic {
display:inline;
margin: 100px;
}
50 changes: 32 additions & 18 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,33 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="css/style.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Instagram</title>
</head>
<body>
Instagram
<div class="columns">
<div class="sidepic">
<img src="img/phones.png">
</div>

Capture and Share the World's Moments
<div class="content">

Instagram is a fast, beautiful and fun way to share your life with friends and family.
<img src="img/brand.png">
<img id="home" src="img/home.png">
<h2>Capture and Share the World's Moments</h2>

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>Instagram is a <b>fast</b>, <b>beautiful</b> and <b>fun</b> 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>

Oh yeah, did we mention it's free?
<p>Oh yeah, did we mention it's free?</p>

Download on the App Store
Get it on Google Play

About Us
Support
Blog
Press
API
Jobs
Privacy
Terms

&copy; 2014 Instagram
<img src="img/badge-iphone.png">
<img src="img/badge-android.png">
</div>
</div>

<footer class="footer">
<nav>
<a href="#">About Us </a>
<a href="#">Support</a>
<a href="#">Blog</a>
<a href="#">Press</a>
<a href="#">API </a>
<a href="#">Jobs</a>
<a href="#"> Privacy</a>
<a href="#"> Terms</a>
<span id="copyright">&copy; 2014 Instagram</span>
</nav>
</footer>

</body>
</html>