-
Notifications
You must be signed in to change notification settings - Fork 0
/
contato.html
84 lines (64 loc) · 2.35 KB
/
contato.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
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
<!-- contato.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>W & B RECORDINGS WEB - Contato</title>
<link rel="stylesheet" href="./style.css">
<script src="./script.js" defer></script>
</head>
<body>
<header>
<button class="menu-toggle">☰</button>
<nav>
<ul>
<li><a href="./index.html">Página Inicial</a></li>
<li><a href="./musicas.html">Músicas</a></li>
<li><a href="./contato.html">Contato</a></li>
</ul>
</nav>
</header>
<script>
document.querySelector('.menu-toggle').addEventListener('click', function () {
document.querySelector('nav').classList.toggle('open');
});
// Adicione este trecho para fechar o menu ao clicar em um item
document.querySelectorAll('nav a').forEach(function (item) {
item.addEventListener('click', function () {
document.querySelector('nav').classList.remove('open');
});
});
</script>
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Seu cabeçalho HTML -->
</head>
<body>
<!-- Seu conteúdo HTML existente -->
<div id="exploracao">
<p>EXPLORE CONOSCO NO INSTAGRAM, MERGULHE NAS NOSSAS PLAYLISTS, ENVIE INDICAÇÕES, COMPARTILHE DÚVIDAS E EMBARQUE NESSA JORNADA SONORA ONDE A MÚSICA É MAIS QUE NOTAS, É A ESSÊNCIA . 🎶✨🎶✨</p>
</div>
<!-- Seu rodapé HTML -->
</body>
</html>
<main>
<!-- Conteúdo da página de contato aqui -->
</main>
<footer class="">
<p></p>
<audio controls loop class="custom-audio">
<source src="./assets/music/What Say You.mp3" type="audio/mp3">
Seu navegador não suporta o elemento de áudio.
</audio>
<ul class="redes-sociais">
<li><a href="https://open.spotify.com/user/wil.dgl?si=BxCu9-9WSVOPEguT-DdypQ">SPOTIFY</a></li>
<li><a href="https://instagram.com/wb_recordings?igshid=MzMyNGUyNmU2YQ==">INSTAGRAM</a></li>
<li><a href="https://m.soundcloud.com/wbrecordsmusic">SOUNDCLOUD</a></li>
</ul>
<p>W & B RECORDINGS © </p>
<a href="./index.html">PÁGINA INICIAL</a>
</footer>
</body>
</html>