forked from SpruceGabriela/instagram-dio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (53 loc) · 2.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Instagram</title>
<!-- Global CSS -->
<link rel="stylesheet" href="./assets/css/global.css">
<!-- Responsive CSS -->
<link rel="stylesheet" href="./assets/css/responsive.css">
<!-- FavIcon -->
<link rel="icon" href="./assets/img/favicon.png">
</head>
<body>
<main>
<section class="wrapper">
<div class="phone">
<img src="./assets/img/instagram-celular.png" alt="Example of an Instagram home screen.">
</div>
<div class="instagram-continue">
<div class="group-top">
<img src="./assets/img/instagram-logo.png" class="instagram-logo" alt="instagram logo">
<div class="profile-photo">
<img src="./assets/img/profile.png" alt="photo profile">
</div>
<a href="https://www.instagram.com/josecmn19/" target="_blank" class="instagram-login">Continue as josecmn19</a>
<a href="#" class="instagram-logout">Remove account</a>
</div><br><br>
<div class="group-end">
<p class="not-account">Not josecmn19?</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-app">Get the app.</p>
<div class="download">
<a href="https://apps.apple.com/br/app/instagram/id389801252" target="_blank" class="app-download"></a>
<a href="https://play.google.com/store/apps/details?id=com.instagram.android" target="_blank" class="app-download"></a>
</div>
</div>
</div>
</section>
</main>
<footer>
<a href="https://github.com/jose-nascimento1" target="_blank">© 2023 Instagram Page</a>
<a href="https://www.linkedin.com/in/jose-nascimento1" target="_blank">Developed by: José Nascimento</a>
</footer>
</body>
</html>