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
86 changes: 86 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,94 @@ dark blue: #06365f
light blue: #1c5380
*/

header {
margin:10;
height: 10px;
}

body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 16px;
margin: 0;
background-image: linear-gradient(#1c5380, #06365f);
background-repeat: no-repeat;
background-size: 100% 30%;
}

.phone {
width: 400px;
height: 600px;
padding: 20px;
margin: 10px;
text-align: center;
float: left;
display: inline-block;
}

.brand {
width: 450px;
height: 60px;
padding: 20px;
margin: 10px;
float: left;
display: inline-block;
}

.login{
background-image: linear-gradient(#1c5380, #06365f);
padding: 10px;
margin: 10px;
border: 1px;
border-style: solid;
box-shadow: 1px 1px #888888;
position: absolute;
}

.main {
background-image: url("../img/frame.png");
background-image: height: 250px;
background-repeat: no-repeat;
background-position: relative;
width: 450px;
height: 400px;
padding: 20px 20px;
margin: 10px;
float: left;
display: inline-block;
}


h1 {
font-family: "Helvetica Neue", Helvetica, Aerial, sans-serif;
font-size: 30px;
color: #06365f;
}



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

.clearfix:after{
visibility: hidden;
display: block;
font-size: 0;
content: " ";
clear: both;
height: 0;
}

footer {
padding: 20px 40px;
margin:10px 40px 10px 40px;
display: inline-block;
text-align: center;
float: left;
}

#copyright {
color: grey;
}

58 changes: 42 additions & 16 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,30 +4,56 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Instagram</title>
<link rel="stylesheet" type="text/css" href="css/style.css" />
</head>

<body>
Instagram

Capture and Share the World's Moments
<header>

Instagram is a fast, beautiful and fun way to share your life with friends and family.
</header>

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?
<div class="phone">
<img src="img/phones.png" alt="iPhones" title="iPhones" id="iphones">
</div>


<div class="brand">
<img src="img/brand.png" alt="Instagram Logo" title="Instagram Logo" id="iglogo"><span class="login"><img src="img/home.png" alt="Home Logo" title="Login">Log in</</span>
</div>

Download on the App Store
Get it on Google Play
<div class="main">
<h1>Capture and Share <br>the World's Moments</h1>

About Us
Support
Blog
Press
API
Jobs
Privacy
Terms

&copy; 2014 Instagram
Instagram is a <span><strong>fast, beautiful</strong></span> and <span><strong>fun</strong></span> way to share your life with friends and family.
<br>
<br>
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>
Oh yeah, did we mention it's free?
<br>
<br>
<img src="img/badge-iphone.png" alt="Apple App Store Logo" title="Apple App Store">
<img src="img/badge-android.png" alt="Google Play Store Logo" title="Google Play Store">
</div>

</body>

<footer>
<nav class="clearfix">
<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>

</html>