-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (82 loc) · 3.36 KB
/
index.html
File metadata and controls
91 lines (82 loc) · 3.36 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans&family=Oswald:wght@200&display=swap"
rel="stylesheet"
/>
<title>Links | turmalina</title>
<link rel="shortcut icon" href="assets/apple.png" type="image/x-icon" />
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<main>
<header>
<img
id="photo"
src="./assets/Logotipo para loja com diamante delicado dourado.pdf.png"
alt="Imagem de perfil de turmalina."
/>
<h1>TURMALINA ESTETICA</h1>
<p>Especialista em estética facial, corporal e capilar
💎Realçando a sua beleza com naturalidade
📍Parque Amazônia - Goiânia </p>
</header>
<ul>
<li><a href="https://www.instagram.com/p/C867YqauoDZ/?igsh=MWMyOXFua3Z3bXVnOQ==" target="_blank" title="Publicação sobre Roberto">Precedimentos</a></li>
<li><a href="https://www.instagram.com/turmalina.estetica23?igsh=MTg0YTNkbHpxYzloeQ==" title="Perfil do Instagram de Roberto">Instagram</a></li>
<li><a href="https://www.facebook.com/profile.php?id=100084998871027&mibextid=LQQJ4d" target="_blank" title="Perfil do TikTok de Roberto">facebook</a></li>
<li><a href="https://wa.me/5562981299440" target="_blank" title="Chamar no WhatsApp">WhatsApp</a></li>
</ul>
<div class="themes" title="Alternar tema">
<svg
id="light-sun"
onclick="lightTheme()"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
width="24"
height="24"
>
<path fill="none" d="M0 0h24v24H0z" />
<path
d="M12 18a6 6 0 1 1 0-12 6 6 0 0 1 0 12zM11 1h2v3h-2V1zm0 19h2v3h-2v-3zM3.515 4.929l1.414-1.414L7.05 5.636 5.636 7.05 3.515 4.93zM16.95 18.364l1.414-1.414 2.121 2.121-1.414 1.414-2.121-2.121zm2.121-14.85l1.414 1.415-2.121 2.121-1.414-1.414 2.121-2.121zM5.636 16.95l1.414 1.414-2.121 2.121-1.414-1.414 2.121-2.121zM23 11v2h-3v-2h3zM4 11v2H1v-2h3z"
fill="rgba(255,255,255,1)"
/>
</svg>
<svg
id="dark-moon"
onclick="darkTheme()"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
width="24"
height="24"
>
<path fill="none" d="M0 0h24v24H0z" />
<path
d="M10 7a7 7 0 0 0 12 4.9v.1c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2h.1A6.979 6.979 0 0 0 10 7zm-6 5a8 8 0 0 0 15.062 3.762A9 9 0 0 1 8.238 4.938 7.999 7.999 0 0 0 4 12z"
/>
</svg>
</div>
<footer>
<p>
Feito por
<a href="https://github.com/RuanTorress" target="_blank" title="Perfil de Ruan Torres"
>Ruan Torres</a
>.
</p>
</footer>
</main>
<script>
function darkTheme() {
document.body.classList.add("dark-theme")
}
function lightTheme() {
document.body.classList.remove("dark-theme")
}
</script>
</body>
</html>