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
104 changes: 104 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,108 @@ body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 16px;
margin: 0;
background-color: #f1f1f1;
background-image: linear-gradient(#1c5380 90%, #06365f);
background-repeat: no-repeat;
background-size: auto 45%;
}

#important {
width: 100%;
margin: auto;
position: relative;
right: 100px;
text-align: center;
}

#left {
display: inline-block;
position: relative;
top: 50px;
left: 50px;
}

#right {
display: inline-block;
width: 500px;
position: relative;
left: 150px;
top: 50px;
}

.top {
display: inline-block;
text-align: left;
}

.brand {
position: relative;
right: 100px;
}

.home {
position: relative;
right: 5px;

}

button {
position: absolute;
top: 20px;
right: 10px;
width: 100px;
height: 35px;
background-image: linear-gradient(#1c5380 70%, #06365f);
color: #f1f1f1;
border-radius: 5px;
border: 1px solid #06365f;
}

.content {
background-color: #f1f1f1;
border-radius: 7px;
padding: 20px;
}

h2 {
font-size: 35px;
width: 400px;
color: #06365f;
margin-top: 0;
text-align: left;
}

span {
font-weight: bold;
}

p {
font-size: 18px;
text-align: left;
}

.store {
padding-right: 20px;
margin-top: 40px;
position: relative;
right: 50px;
}

footer {
position: relative;
width: 100%;
top: 200px;
text-align: center;
font-size: 15px;
text-transform: uppercase;
font-weight: bold;
color: grey;
}

.nav {
padding-right: 15px;
text-decoration: none;
color: #1c5380;

}

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

Capture and Share the World's Moments
<div id="right">
<div class="top">
<div>
<img src="img/brand.png" class="brand">
</div>

Instagram is a fast, beautiful and fun way to share your life with friends and family.
<div class="login">
<button type="button">
<img src="img/home.png" class="home">
Log in
</button>
</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.

Oh yeah, did we mention it's free?
<div class="content">
<h2>Capture and Share the World's Moments</h2>

Download on the App Store
Get it on Google Play
<p>Instagram is a <span>fast, beautiful</span> and <span>fun</span> way to share your life with friends and family.</p>

About Us
Support
Blog
Press
API
Jobs
Privacy
Terms
<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>

&copy; 2014 Instagram
<p>Oh yeah, did we mention it's free?</p>


<a href="#"><img src="img/badge-iphone.png" class="store"></a>
<a href="#"><img src="img/badge-android.png" class="store"></a>
</div>
</div>
</div>


<footer>
<nav>
<a href="#" class="nav">About Us</a>
<a href="#" class="nav">Support</a>
<a href="#" class="nav">Blog</a>
<a href="#" class="nav">Press</a>
<a href="#" class="nav">API</a>
<a href="#" class="nav">Jobs</a>
<a href="#" class="nav">Privacy</a>
<a href="#" class="nav">Terms</a>
&copy; 2014 Instagram
</nav>
</footer>
</body>
</html>