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
84 changes: 84 additions & 0 deletions css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,90 @@ 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;
}

section{
position: relative;
margin: 100px 10% 40px 10%;
}
article {
position:relative;
margin-top: 5px;
padding: 10px 33px;
background: url("../images/frame.png");
background-position: center;
background-size: 429px 367px;
font-size: 14px;
}
footer{
position:relative;
margin: 0 auto;
}
nav {
text-align:center;
}
ul>li {
color: #06365f;
text-transform: uppercase;
display:inline;
padding: 8px;
font-size: 12px;
font-weight: bold;
}
h1 {
font-size: 23px;
line-height: 25px;
color: #06365f;
}
button {
background:#1c5380;
color: white;
float:right;
font-size: 16px;
padding: 10px 15px 10px 10px;
display: inline-block;
}
#right {
width: 429px;
display: inline-block;
height: 450px;
right: 0px;
position: relative;
margin-left: 50px
}
#phones {
position: relative;
display: inline-block;
left:0px;
height: 460px;
width:auto;
margin-right: 20px;
}
#iphone {
width: auto;
margin-top: 10px;
height: 39px;
margin-right: 15px;
}
#brand {
float:left;
width:250px;
}
#top-right {
height:65px;
padding-top: 20px;
padding-bottom: 20px;
}
#android {
width: auto;
height: 39px;
}
#copyright {
color:silver;
}
#buttontext {
padding-bottom:2px;
}
59 changes: 36 additions & 23 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,30 +2,43 @@
<html lang="en">
<head>
<title>Instagram</title>
<link rel="stylesheet" type="text/css" href="css/main.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
<section>
<img src="images/phones.png" id="phones">
<div id="right">
<div id="top-right">
<img src="images/brand.png" id="brand">
<button>
<img src="images/home.png">
<id="buttontext">Log in</id>
</button>
</div>
<article>
<h1>Capture and Share </br>the World's Moments</h1>
<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>
<p>Oh yeah, did we mention it's free?</p>
<img src="images/badge-iphone.png" id="iphone">
<img src="images/badge-android.png" id="android">
</article>
</div>
</section>
<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>