forked from ironhack-labs/lab-css-instagram-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (49 loc) · 1.45 KB
/
index.html
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
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Instagram Clone</title>
<link rel="stylesheet" href="./styles/style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;700;900&display=swap" rel="stylesheet">
</head>
<body>
<div id="entire">
<div id="container">
<div id="iphone">
<img src="images/phones.png"/>
</div>
<div id="Instagram-container">
<div class="Instagram">
<img src="images/brand.png"/>
<button>Log in</button>
</div>
<div id="capture">
<h1>Capture and Share the World's Moments</h1>
<p>Instagram is a <b>fast</b>, <b>beautiful</b> and <b>fun</b> way to share your life with
friends and family.</p>
<p>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. Oh yeah, did we mention it's free?</p>
</div>
<div id="App">
<img src="images/badge-iphone.png"/>
<img src="images/badge-android.png"/>
</div>
</div>
</div>
<footer>
<ul>
<li>ABOUT US</li>
<li>SUPPORT</li>
<li>BLOG</li>
<li>PRESS</li>
<li>API</li>
<li>JOBS</li>
<li>PRIVACY</li>
<li>TERMS</li>
<li>©️ 2014 Instagram</li>
</ul>
</footer>
</div>
</body>
</html>