-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (83 loc) · 2.08 KB
/
index.html
File metadata and controls
96 lines (83 loc) · 2.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
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
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Táticas de Futebol</title>
<style>
/* Estilo geral */
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
/* Estilo do cabeçalho */
header {
text-align: center;
padding: 20px;
background-color: #333;
color: #fff;
}
/* Estilo da navegação */
nav {
margin-top: 10px;
}
nav ul {
list-style: none;
padding: 0;
}
nav ul li {
display: inline;
margin-right: 20px;
}
nav a {
color: #fff;
text-decoration: none;
font-weight: bold;
}
/* Estilo da seção principal */
section {
margin: 20px;
}
/* Estilo dos títulos */
h2 {
color: #333;
}
/* Estilo dos parágrafos */
p {
line-height: 1.6;
color: #555;
}
/* Estilo do rodapé */
footer {
text-align: center;
padding: 10px;
background-color: #333;
color: #fff;
position: fixed;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<h1>Táticas de Futebol</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="tactics.html">Táticas</a></li>
<li><a href="about.html">Sobre</a></li>
</ul>
</nav>
</header>
<section>
<h2>Bem-vindo ao nosso site sobre táticas de futebol!</h2>
<p>Explore diferentes estratégias, formações e dicas para aprimorar suas habilidades no futebol.</p>
</section>
<footer>
<p>© 2024 Táticas de Futebol</p>
</footer>
</body>
</html>