-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (50 loc) · 1.57 KB
/
index.html
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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Menu Principal</title>
<link rel="stylesheet" href="styles.css">
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
margin: 0;
padding: 0;
background-color: #f0f0f0;
}
.menu {
margin-top: 50px;
}
.menu a {
display: block;
font-size: 24px;
text-decoration: none;
color: #333;
background-color: #fff;
padding: 15px 20px;
margin: 10px;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
transition: background-color 0.3s, color 0.3s;
}
.menu a:hover {
background-color: #007bff;
color: #fff;
}
</style>
</head>
<body>
<div class="menu">
<h1>Menu Principal</h1>
<a href="jogodaevolucao/index.html">Jogo da Evolução</a>
<a href="jogodaproexis2/jogodaproexis2.html">Jogo da Proéxis - Cartas</a>
<a href="ferramentas_e_planilhas/ferramentas_e_planilhas.html">Ferramentas e planilhas</a>
<a href="cronometro_DIP/cronometro.html">Cronômetro DIP</a>
<!--
<a href="jogodaproexis/index.html">Jogo da Proéxis</a>
<a href="jogodoempreendedorismoevolutivo/jogodoempreendedorismoevolutivo.html">Jogo do Empreendedorismo Evolutivo - Cartas</a>
-->
</div>
</body>
</html>