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
88 changes: 88 additions & 0 deletions css/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
<!DOCTYPE html>
<html lang="en">

<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>

<div class="container">

<div class="row row-first">

<div class="column">

<img src="img/phones.png" class="phones">

</div>

<div class="column">



<div class="content">
<img src="img/brand.png" class="brand">

<button class="button">

<img src="img/home.png" class="homeLog">

<p style="display: inline-block; font-size: 14px; margin: 10px;">Log in</p>

</button>
<h2>Capture and Share </br>
the World's Moments</h2>

<p id="firstPara">Instagram is a <strong>fast</strong>, <strong>beautiful</strong> and <strong>fun</strong> way to share your life </br>
with friends and family.</p>

<p>Take a picture or video, choose a filter to transform its look</br>
and feel, then post to Instagram &mdash; it's that easy. You can</br>
even share to Facebook, Twitter, Tumblr and more. It's a </br>
new way to see the world.</p>

<p>Oh yeah, did we mention it's free?</p>

<img src=img/badge-iphone.png class="appleApp">

<img src=img/badge-android.png class="androidApp">

</div>

</div>

</div>

<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>

</nav>

<p id="copyright">&copy; 2014 Instagram</p>

</footer>

</div>

</body>
</html>




41 changes: 41 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,45 @@ body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 16px;
margin: 0;
background: linear-gradient(to bottom, rgb(64, 100, 137) 0%,rgb(64, 100, 137) 80%,#000000 50%,white 50%,white 100%) no-repeat;
}

.container {
max-width: 790px;
margin: 0 auto;
}

.row {
}

.row:after {
content: "";
display: table;
clear: both;
}

.row-first {
margin-top: 100px;
}

.column {
float: left;
width: 50%;
}

.content {
background-image: url("../img/frame.png");
}

h2 {
color: #06365f;
}

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

#copyright {
color: grey;
}
33 changes: 0 additions & 33 deletions index.html

This file was deleted.