-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (40 loc) · 1.13 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="estilo.css">
<title>Menu Acordeão</title>
</head>
<body>
<nav>
<div id="menu">
<input type="checkbox" name="check1" id="check1">
<label for="check1">Menu</label>
<div class="options">
<a>Home</a>
<a>Perfil</a>
<a>Sair</a>
</div>
</div>
<div id="cursos">
<input type="checkbox" name="check2" id="check2">
<label for="check2">Cursos</label>
<div class="options">
<a>Javascript</a>
<a>HTML5</a>
<a>CSS3</a>
</div>
</div>
<div id="materiais">
<input type="checkbox" name="check3" id="check3">
<label for="check3">Materiais</label>
<div class="options">
<a>Áudios</a>
<a>Vídeos</a>
<a>PDFs</a>
</div>
</div>
</nav>
</body>
</html>