-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrules.html
More file actions
35 lines (35 loc) · 1.06 KB
/
rules.html
File metadata and controls
35 lines (35 loc) · 1.06 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Regras - 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="rules">
<h1>Regras do Campeonato</h1>
<ul>
<li>Regra 1: ...</li>
<li>Regra 2: ...</li>
<li>Regra 3: ...</li>
<!-- Adicione mais regras conforme necessário -->
</ul>
</section>
</main>
<footer>
<p>© 2024 Camp Netsuki. Todos os direitos reservados.</p>
</footer>
<script src="js/main.js"></script>
</body>
</html>