-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (49 loc) · 1.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<link rel="shortcut icon" href="img/icon-instagram.png" />
<title>Instagram Mirror</title>
</head>
<body>
<!-- Main Container -->
<div class="instagram-wrapper">
<!-- Two columns: column 1 image cell(instagram-phone) | column 2 continue account(instagram-continue) -->
<div class="instagram-phone">
<img src="./img/phonesHome3.png" alt="image cellphone" />
</div>
<!-- In second columns, instagram continue, there is 3 containers(groups): Logo, profile photo, anchor (get-the-app) -->
<div class="instagram-continue">
<div class="group">
<img
src="/img/instagram-logo.png"
class="instagram-logo"
alt="instagram logo"
/>
<div class="profile-photo">
<img src="img/perfil-instagram.png" alt="profile photo" />
</div>
<a href="#" class="instagram-login">Continue as Mary Poppins</a>
<a href="#" class="instagram-logout">Remove account</a>
</div>
<div class="group">
<p class="not-account">Not Mary Poppins?</p>
<p class="not-account">
<span class="link-blue">Switch accounts</span>
or
<span class="link-blue">Sign Up</span>
</p>
</div>
<div class="get-the-app">
<p class="get-the-app">Get the app</p>
<div class="download">
<a href="#" class="app-download"></a>
<a href="#" class="app-download"></a>
</div>
</div>
</div>
</div>
</body>
</html>