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
Binary file added css/frame.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
81 changes: 79 additions & 2 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,83 @@ light blue: #1c5380

body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 16px;
margin: 0;
margin: 0 auto;
background-image: linear-gradient(to bottom, #1c5380 40%, #1c5380 30%, white 30%, white 0%);
background-size: cover;
background-repeat: no-repeat;
}

#main {
width: 850px;
padding: 100px 0px 100px 0px;
margin: 0 auto;
}

#box-left {
width: 350px;
float: left;
}

#box-right {
padding: 20px 0 0 0;
width: 500px;
float: right;
}

.button {
margin: 15px;
padding: 8px;
background-image: linear-gradient(to bottom, #1c5380, #06365f);
border: 1px solid #06365f;
border-radius: 4px;
vertical-align: middle;
}

.button a {
color: #FFFFFF;
font-size: 14px;
text-decoration: none;
position: relative;
bottom: 5px;
}

.text-box {
background-image: url("frame.png");
background-repeat: no-repeat;
font-size: 15.5px;
padding: 20px 40px 20px 40px;
}

.para {
line-height: 1.5;
}

.badges {
padding: 30px 0px 0 0;
}

div h1 {
color: #06365f;
font-size: 26px;
}

footer {
clear: both;
text-align: center;
text-transform: uppercase;
padding: 40px 0px 40px 0px;
font-size: 12px;
font-weight: 500;
}

nav a {
padding: 0px 7px 0px 7px;
text-decoration: none;
color: #1c5380;
}

nav span {
color: #bec0c4;
padding: 0 0 0 20px;
}

54 changes: 38 additions & 16 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,30 +4,52 @@
<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
<div id ="main">
<div id="box-left">
<img src="img/phones.png">
</div>

Capture and Share the World's Moments
<div id="box-right">
<div class="logo-box">
<img src="img/brand.png"><span class="button" style="float:right"><img src="img/home.png"><a href="#"> Log in</a></span>
</div>

Instagram is a fast, beautiful and fun way to share your life with friends and family.
<div class="text-box">
<h1>Capture and Share<br>the World's Moments</h1>

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.
<div class="para">
<p>Instagram is a <strong>fast</strong>, <strong>beautiful</strong> and <strong>fun</strong> way to share your life with friends and family.</p>

Oh yeah, did we mention it's free?
<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>

Download on the App Store
Get it on Google Play
<p>Oh yeah, did we mention it's free?</p>
<br>
<a href="#"><img src="img/badge-iphone.png"></a><span style="padding:20px"><a href="#"><img src="img/badge-android.png"></a></span>
</div>
</div>

About Us
Support
Blog
Press
API
Jobs
Privacy
Terms
</div>
</div>

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