-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
31 lines (31 loc) · 1.08 KB
/
contact.html
File metadata and controls
31 lines (31 loc) · 1.08 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fale Conosco - Camp Netsuki</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header>
<img src="images/logo.png" alt="Camp Netsuki Logo" class="logo">
<nav>
<a href="index.html">Home</a>
<a href="rules.html">Regras</a>
<a href="contact.html">Fale Conosco</a>
<a href="login.html">Login</a>
</nav>
</header>
<main>
<section class="contact">
<h1>Fale Conosco</h1>
<p>Se você tiver alguma dúvida ou quiser entrar em contato conosco, clique no link abaixo para iniciar um chat pelo WhatsApp.</p>
<a href="https://wa.me/5581997977133" target="_blank" class="btn">Conversar no WhatsApp</a>
</section>
</main>
<footer>
<p>© 2024 Camp Netsuki. Todos os direitos reservados.</p>
</footer>
<script src="js/main.js"></script>
</body>
</html>