-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
51 lines (47 loc) · 1.52 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style.css">
<title>Instagram</title>
</head>
<body>
<div class="instagram-wrapper">
<div class="instagram-phone">
<img src="./img/instagram-smartphone.png" alt="smartphone">
</div>
<div class="instagram-continue">
<!--group-->
<div class="group">
<!--logo-->
<img src="./img/instagram-logo.png" alt="Logo do Instragram" class="instragram-logo">
<!--end of logo-->
<div class="profile-photo">
<img src="./img/instagram-user.png" alt="Foto do Usuario">
</div>
<a href="#" class="instagram-login">Continue como rosinha88</a>
<a href="#" class="instagram-logout">Remover conta</a>
</div>
<!--end of group-->
<!--group-->
<div class="group">
<p class="not-account">Voce não é rosinha88?</p>
<p class="not-account">
<span class="link-blue">Alternar contas</span>
ou
<span class="link-blue">Inscreva-se</span>
</p>
</div>
<!--end of group-->
<div class="get-the-app">
<p class="get-app">Baixe o aplicativo</p>
<div class="store-buttons">
<a href="" class="store-btn"></a>
<a href="" class="store-btn"></a>
</div>
</div>
</div>
</div>
</body>
</html>