-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsobre.html
More file actions
55 lines (49 loc) · 1.33 KB
/
sobre.html
File metadata and controls
55 lines (49 loc) · 1.33 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sobre - 2025 Cup</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background: linear-gradient(to right, rgb(2, 16, 45), rgb(44, 60, 96));
color: white;
text-align: center;
}
header, footer {
background-color: rgba(0, 0, 0, 0.7);
padding: 10px;
}
nav a {
color: white;
text-decoration: none;
margin: 0 15px;
font-weight: bold;
}
nav a:hover {
text-decoration: underline;
}
section {
padding: 20px;
}
</style>
</head>
<body>
<header>
<h1>Sobre o 2025 Cup</h1>
<nav>
<a href="index.html">Início</a>
<a href="regras.html">Regras</a>
<a href="inscricao.html">Inscrição</a>
</nav>
</header>
<section>
<p>O 2025 Cup é um campeonato de Counter-Strike 1.6 organizado para jogadores apaixonados por e-sports.</p>
</section>
<footer>
<p>© 2025 2025 Cup</p>
</footer>
</body>
</html>