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
80 changes: 80 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,84 @@ body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 16px;
margin: 0;
overflow-x: hidden;
}

#phones {
position: absolute;
top: 100px;
left:15%;
}

#frame{
width: 700px;
}

.container {
position: relative;
}

.text-block {
position: absolute;
top: 10px;
width: 600px;
padding: 10px 50px;
}

.topSection {
background-color: rgb(63, 114, 155);
height: 350px;
width: 100%;
}

.content {
position: relative;
top: 100px;
left: 50%;
margin-left:-100px;
}

.footer {
bottom: 60px;
left: 50%;
margin-left: -250px;
margin-top: 30px;
}

ul{
list-style: none;
margin: 10px;
}

li {
display: inline;
margin-right: 10px;
}

.login {
display: inline-block;
position: relative;
bottom: 30px;
margin-left: 250px;
border: 1px solid #1c5380;
padding:10px;
width: 100px;
color: white;
}

h1 {
font-size:40px;
color: #1c5380;
}

.footer li {
color: #06365f;
font-weight:700;
text-transform: uppercase;
}

#copyright {
font-weight: 400;
color: grey;
text-transform: uppercase;
}
71 changes: 55 additions & 16 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,31 +3,70 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/style.css">
<title>Instagram</title>
</head>
<body>
Instagram
<img src="img/phones.png" id="phones">

<section class="topSection">
<div class="content">
<img src="img/brand.png" id="logo">
<div class="login">
<img src="img/home.png" id="home"><strong> Log in</strong>
</div>
<div class="container">
<img src="img/frame.png" id="frame">
<div class="text-block">
<h1>Capture and Share <br> the World's Moments</h1>
<div>
<p>Instagram is a <strong>fast</strong>, <strong>beautiful</strong> and <strong>fun</strong> way to share your life with friends and family.</p>
</div>

<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.</div>
<br>
<div>Oh yeah, did we mention it's free?</div>
</div>
<div class="buttons">
<img src="img/badge-android.png" class="badge">
<img src="img/badge-iphone.png" class="badge">
</div>
</div>
<div class="footer">
<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>
<span id="copyright">&copy; 2014 Instagram</span>
</ul>
</div>
</div>
<div class="download-buttons">
</div>
</section>

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?
<!--
<div class="container">
<img src="img/frame.png" id="frame">
<div class="text-block">
<h1>Capture and Share the World's Moments</h1>

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

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

&copy; 2014 Instagram
</body>
</html>