forked from ironhack-labs/lab-css-instagram-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (66 loc) · 2.66 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
56
57
58
59
60
61
62
63
64
65
66
67
68
<!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>
<!-- don't forget to link your styles -->
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<div class="contain-all-landing">
<div class="contain-items-colum">
<section class="top-items">
<div class="image-phone">
<img src="./images/phones.png" alt="">
</div>
<div class="dates-landing">
<nav>
<h1 class="logo-main">
<img src="./images/brand.png" alt="">
</h1>
<a href="#">
<img src="./images/home.png" alt="">
Log in
</a>
</nav>
<div class="text-page">
<h2>Capture and Share the World's Moments</h2>
<p>
Instagram is a <span class="bold-word">fast</span>, <span class="bold-word">beautiful</span> and <span class="bold-word">fun</span> 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.
</p>
<p>
Oh yeah, did we mention it's free?
</p>
<div class="images-bottom">
<img src="./images/badge-iphone.png" alt="Image-iphone">
<img src="./images/badge-android.png" alt="Image-android">
</div>
</div>
</div>
</section>
<footer>
<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>
<p>© 2014 Instagram</p>
</footer>
</div>
</div>
<!-- Instagram 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
— 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 © 2014 Instagram -->
</body>
</html>