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
74 changes: 74 additions & 0 deletions css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,80 @@ light blue: #1c5380
*/

body {
background: #fff url('../images/bgtile.png') repeat-x;
font: 200 16px/1.5 "Helvetica Neue", Helvetica, Arial, sans-serif;
margin: 0;
}

li {
display: inline;
font-weight: bold;
color: #1c5380;
margin-right: 5px;
}
section {
margin-left: 400px;
margin-right: 400px;
margin-top: 100px;
}
#rightside {
width: 500px;
display: inline-block;
position: absolute;
top: 20%;
margin-left: 100px;
}
nav {
text-align: center;
}
#copyright {
display: inline;
font-weight: bold;
color: gray;
}
.branding {
position: absolute;
top: -20%;
width: 100%;
}
article {
padding-left: 30px;
padding-right: 30px;
padding-top: 5px;
}
h1 {
color: #06365f;
font-weight: bold;
font-size: 30px;
}
.whiteback {
background: url('../images/frame.png') no-repeat;
}
button {
background: -webkit-linear-gradient(#1c5380, #06365f);
width: 100px;
height: 40px;
color: white;
border-color: #1c5380;
border-width: 1px;
border-radius: 3px;
font-weight: bold;
font-size: 15px;
float: right;
position: absolute;
top: 22%;
right: 0px;
line-height: 25px;
}
p {
margin-bottom: 30px;
}
#iphone {
margin-right: 20px;
}
footer {
margin-top: 60px;
}
li {
margin-right: 15px;
}
70 changes: 45 additions & 25 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,31 +1,51 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Instagram</title>
</head>
<body>
Instagram
<head>
<title>Instagram</title>
<link rel="stylesheet" href="./css/main.css">
</head>
<body>
<section>
<img src="./images/phones.png">
<div id="rightside">
<div class="branding">
<img src="./images/brand.png">
<button>
<div style="float: left;">
<img src="./images/home.png">
</div>
Log in
</button>
</div>
<div class="whiteback">
<article>
<h1>Capture and Share <br>the World's Moments</h1>
<p>Instagram is a fast, beautiful and fun way to share your life with friends and family.<br><br>

Capture and Share the World's Moments
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.<br><br>

Instagram is a fast, beautiful and fun way to share your life with friends and family.
Oh yeah, did we mention it's free?</p>
<img src="./images/badge-iphone.png" id="iphone">
<img src="./images/badge-android.png">
</article>
</div>
</div>
</section>

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>
<footer>
<nav>
<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 id="copyright">&copy; 2014 Instagram</li>
</ul>
</nav>
</footer>
</body>
</html>