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
105 changes: 104 additions & 1 deletion css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,112 @@ Colors to use:
dark blue: #06365f
light blue: #1c5380
*/
html {
background:linear-gradient(#1c5380,#06365f);
height: 45%;
background-repeat: no-repeat;
}

body {
body * {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 16px;
margin: 0;
}

.Description {
position: absolute;
color:black;
bottom: 175px;
left: 700px;

}

div .header {
position: absolute;
top: 25px;
left: 35px;
right: 5px;
font-size: 27px;
text-align: left;
max-width: 275px;
width: 100%;
color: #06365f;
font-weight: 700;
}

div .para {
position: absolute;
top: 115px;
left: 35px;
width: 100%;
max-width: 420px;
text-align: left
}

nav .phones {
position: absolute;
top: 110px;
left: 325px;
}

nav .brand {
position: absolute;
left: 700px;
top: 125px;
}

.login {
position: absolute;
left: 1080px;
top: 135px;
background: #1c5380;
border: solid;
border-width: 1px;
border-color:#06365f;
color:white;
font-weight: bold;
font-size:20px;
padding:10px;
}

nav .apple {
position: absolute;
left: 725px;
top: 565px;
}

nav .android {
position: absolute;
left: 910px;
top: 565px;
}

ul{
list-style-type: none
}

li{
position:relative;
top:700px;
left: 430px;
float: left;
}

li a{
display: block;
text-align: center;
padding:10px;
text-transform: uppercase;
font-weight: bold;
font-size: 11px;
color:#1c5380;
text-decoration: none;
}

.cr{
padding:10px;
color:gray;
text-transform: uppercase;
font-size: 11px;
font-weight: bold;
}
61 changes: 39 additions & 22 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,31 +3,48 @@
<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
<nav>
<img class="phones" src="img/phones.png">
</nav>
<nav>
<img class= "brand" src="img/brand.png">
</nav>
<nav class="login">
<img class= "button" src="img/home.png">Log in
</nav>
<!-- <img src="img/bgtile.png"> -->
<nav>
<img class= "apple" src="img/badge-iphone.png">
</nav>
<nav>
<img class= "android" src="img/badge-android.png">
</nav>
<div class ="Description">
<img src="img/frame.png">
<div class="header">Capture and Share the World's Moments</div>

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?

Download on the App Store
Get it on Google Play

About Us
Support
Blog
Press
API
Jobs
Privacy
Terms

&copy; 2014 Instagram
<div class="para">Instagram is a fast, beautiful and fun way to share your life with friends and family.
<br></br>
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></br>
Oh yeah, did we mention it's free?</div>
</div>
<footer>
<ul class="footer">
<li><a href="#">About Us</a></li>
<li><a href="#">Support</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Press</a></li>
<li><a href="#">API</a></li>
<li><a href="#">Jobs</a></li>
<li><a href="#">Privacy</a></li>
<li><a href="#">Terms</a></li>
<li class="cr">&copy; 2014 Instagram</li>
</ul>
</footer>
</body>
</html>