forked from ironhack-labs/lab-css-instagram-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (51 loc) · 1.81 KB
/
index.html
File metadata and controls
59 lines (51 loc) · 1.81 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
53
54
55
56
57
58
59
<!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 href="styles/style.css" rel="stylesheet" />
</head>
<body>
<div id="top-background">
<div id="centered-items">
<div id="phones"><img src="images/phones.png" alt="smartphones"></div>
<section id="right-panel">
<div id="logo-and-button">
<div id="insta-logo"><img src="images/brand.png" alt="instagram logo"></div><a href="#" class="button"><img
src="images/home.png">Log
in</a>
</div>
<article id="presentation">
<h1>Capture and Share<br>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.</p>
<p>Oh yeah, did we mention it's free?</p>
<a href="#"><img class="imgbadges" src="images\badge-iphone.png" alt="Download on the App Store"></a>
<a href="#"><img class="imgbadges" src="images\badge-android.png" alt="Get it on Google Play"></a>
</article>
</section>
</div>
<div class="break"></div>
<nav><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> © 2014 INSTAGRAM
</nav>
<div class="break"></div>
</div>
</body>
</html>