forked from WDI-SEA/css-positioning
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (45 loc) · 1.68 KB
/
index.html
File metadata and controls
52 lines (45 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/style.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Instagram</title>
</head>
<body>
<div class = "bluebox"></div>
<img src="img/phones.png" class = "phoneimg">
<div class = "rightbar">
<img src="img/brand.png" class = "logoimg">
<div class = "login">
<img src = "img/home.png" class = "homeimg">
<div class ="loginwords">
Log In
</div>
</div>
<div class = "blurb">
<h2>Capture and Share the World's Moments</h2>
<div class = "blurbtext">Instagram is a <strong>fast</strong>, <strong>beautiful</strong> and <strong>fun</strong> way to share your life with friends and family.<br>
Take a picture or video, choose a filter to transform its look and feel, then post to Instagram — it's that easy. You can even share to Facebook, Twitter, Tumblr and more. It's a new way to see the world.<br>
Oh yeah, did we mention it's free?
</div>
</div>
<a href=#><img src="img/badge-iphone.png" class ="iphoneimg"></a>
<a href=#><img src="img/badge-android.png" class ="androidimg"></a>
</div>
<footer>
<ul>
<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 = "gray"> © 2014 Instagram</li>
</ul>
</footer>
</body>
</html>