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
103 changes: 103 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,106 @@ body {
font-size: 16px;
margin: 0;
}


#header {
background-color: #06365f;
height: 40%;
width: 100%;
position: absolute;
}


#phones {
position: absolute;
top: 20%;
left: 10%;
}

#title-img {
position: absolute;
top: 20%;
left: 44%;
}

#title-home {
position: absolute;
top: 23%;
right: 16%;
background-color: #1c5380;
padding: 5px;
margin: 10px;
border-radius: 5px;
}

#title-login{
float: right;
padding-left: 5px;
font-weight: bold;
}


#main-text {
background-image: url('../img/frame.png');
background-repeat: no-repeat;
position: relative;
top: 244px;
left: 43%;
width: 40%;
padding: 30px;
}


#main-text-head {
color: #06365f;
font-size: 20px;
font-weight: bold;
width: 65%;
}

#mid-text {
width: 85%;
margin: 10px 0;
font-size: 14px;
}

.buttons{
position: absolute;
left: 45%;
top: 74%;
width: 30%;
}

#download {
display:inline-block;
}

#google {
display: inline-block;
}

#footer {
bottom: 12px;
left: 321px;
position: absolute;
color: #1c5380;
font-weight: bold;
}


.text, .text1 {
display: inline-block;
margin: 10px;
}

.text1 {
color: grey;
}
/* vw = view-width >> can be used to resize on mobile */







51 changes: 36 additions & 15 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,31 +3,52 @@
<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

Capture and Share the World's Moments
<div id="header"> </div>
<div id="subheader"></div>
<div id="phones"><img src="img/phones.png" alt="Phones"></div>

Instagram is a fast, beautiful and fun way to share your life with friends and family.
<div id="title">
<div id="title-img"><img src="img/brand.png" alt="Instagram"></div>
<div id="title-home"><img src="img/home.png" alt="Home"><div id="title-login">Log In</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>

<div id="main-text">
<div id="main-text-head">Capture and Share the World's Moments</div>

<div id="mid-text">Instagram is a <strong>fast</strong>, <strong>beautiful</strong> and <strong>fun</strong> 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>

<div class="buttons">
<div id="download"><img src="img/badge-iphone.png" alt="Download on the App Store"></div>
<div id="google"><img src="img/badge-android.png" alt="Get it on Google Play"></div>
</div>


Download on the App Store
Get it on Google Play
<div id="footer">About Us
<div class="text">Support</div>
<div class="text">Blog</div>
<div class="text">Press</div>
<div class="text">API</div>
<div class="text">Jobs</div>
<div class="text">Privacy</div>
<div class="text">Terms</div>

About Us
Support
Blog
Press
API
Jobs
Privacy
Terms
<div class="text1">&copy; 2014 Instagram</div>
</div>

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