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 .DS_Store
Binary file not shown.
Binary file added css/.DS_Store
Binary file not shown.
56 changes: 56 additions & 0 deletions css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,62 @@ 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;
position: relative;
}

.col_1 {
position: relative;
margin-left: 100px;
margin-top: 120px;
padding-bottom: 20px;
}

section {
position: relative;
max-width: 500px;
float: right;
margin-right: 120px;
margin-top: 120px;

}

article{
border-width: 3px;
border-radius: 10px;
background-color: white;
padding-left: 30px;


}
.page_bot{
position: relative;
text-align: center;
margin-bottom: 100px;
font-weight: bold;
text-transform: uppercase;
}

#copyright{
color: grey;
font-size: 12px;

}

#login{
height: 30px;
width: 50px;
padding: 10px 0 10px 0;
margin-bottom: 10px;
margin-left: 10px;
}

nav li {
list-style-type: none;
display: inline;
text-align: center;
padding-right: 5px;

}
Binary file added images/.DS_Store
Binary file not shown.
58 changes: 37 additions & 21 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,31 +1,47 @@
<!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>
<img class="col_1" src="images/phones.png" alt="Phones">

Capture and Share the World's Moments
<section>

Instagram is a fast, beautiful and fun way to share your life with friends and family.
<div>
<img src="images/brand.png"alt="Instagram">
<button type="submit"><img id="login" src="images/home.png"alt="Home"> Log In</button>
</div>

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.
<article>
<h1 style="font-size:30px; color:#06365f">Capture and Share the World's Moments</h1>

Oh yeah, did we mention it's free?
<p style="font-size: 20px">Instagram is a <strong>fast, beautiful</strong> and <strong>fun</strong> way to share your life with friends and family.<br/>

Download on the App Store
Get it on Google Play
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/>

About Us
Support
Blog
Press
API
Jobs
Privacy
Terms
Oh yeah, did we mention it's free?</p>

&copy; 2014 Instagram
</body>
<img src="images/badge-iphone.png" alt="Download on the App Store">
<img src="images/badge-android.png" alt="Get it on Google Play">
</article>
</section>

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