-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (85 loc) · 2.34 KB
/
index.html
File metadata and controls
85 lines (85 loc) · 2.34 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vasco da Gama</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f0f0f0;
}
header {
background-color: #192b4d;
color: white;
padding: 10px 0;
text-align: center;
}
nav {
background-color: #384961;
padding: 10px;
text-align: center;
}
nav a {
color: white;
text-decoration: none;
margin: 0 10px;
}
main {
padding: 20px;
background-color: white;
border-radius: 5px;
margin: 20px auto;
max-width: 800px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
h2 {
color: #192b4d;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin-bottom: 5px;
}
</style>
</head>
<body>
<header>
<h1>Vasco da Gama</h1>
</header>
<nav>
<a href="#historia">História</a>
<a href="#titulos">Títulos</a>
<a href="#elenco">Elenco</a>
</nav>
<main>
<section id="historia">
<h2>História</h2>
<p>O Club de Regatas Vasco da Gama é um dos principais clubes de futebol do Brasil, com sede no Rio de Janeiro.</p>
<!-- Adicione mais informações históricas sobre o clube aqui -->
</section>
<section id="titulos">
<h2>Títulos</h2>
<ul>
<li>Campeonato Brasileiro: 1974, 1989, 1997, 2000</li>
<li>Copa do Brasil: 2011</li>
<!-- Adicione mais títulos conquistados pelo clube aqui -->
</ul>
</section>
<section id="elenco">
<h2>Elenco</h2>
<ul>
<li>Goleiro: Fernando Miguel</li>
<li>Zagueiro: Leandro Castan</li>
<li>Meio-campista: Benítez</li>
<li>Atacante: Germán Cano</li>
<!-- Adicione mais jogadores do elenco atual aqui -->
</ul>
</section>
</main>
</body>
</html>