-
Notifications
You must be signed in to change notification settings - Fork 0
/
eventos.html
88 lines (86 loc) · 2.54 KB
/
eventos.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
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
<!DOCTYPE html>
<html>
<link href="./css/site.css" rel="stylesheet" type="text/css">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<basefont color="red" size="5" face="liberation" />
</head>
<body id="eventos">
<nav>
<header>
<img class="imgLogo" src="./img/PontaLogo.png">
</header>
<nav>
<ul class="menu">
<li><a href="./academia.html" target="_blank">Academia</a></li>
<li><a href="./turmas.html" target="_blank">Turmas</a></li>
<li><a href="./cursos.html" target="_blank">Cursos</a></li>
<li><a href="./eventos.html" target="_blank">Eventos</a></li>
<li><a href="./matricula.html" target="_blank">Matrícula</a></li>
</ul>
</nav>
</nav>
<section>
<table class="tabCursos">
<tr>
<th colspan=2 class="tabTitulo">Festivais</th>
</tr>
<tr>
<th class="tabSubTit">Inverno</th>
<th class="tabSubTit">Verão</th>
</tr>
<tr>
<td>
<ul class="festival">
<li>Tema livre</li>
<li>R$ 60 por dança</li>
<li>1ª semana de Julho</li>
</ul>
</td>
<td>
<ul class="festival">
<li>Tema livre</li>
<li>R$ 60 por dança</li>
<li>1ª semana de Julho</li>
</ul>
</td>
</tr>
</table>
<div class="reserva">
<form>
<fieldset>
<legend>Reserva de Vaga em Evento</legend>
<label for="matricula">Matrícula:</label>
<input type="text" name="matricula" required/>
<select name="eventos">
<option>---</option>
<option>Festival de Inverno</option>
<option>Festival de Verão</option>
</select>
<label for="eventos" class="right">Eventos:</label>
<br/>
<label for="dancas">Danças:</label>
<input type="checkbox" name="chk_ballet">Ballet</input>
<input type="checkbox" name="chk_jazz">Jazz</input>
<input type="checkbox" name="chk_sapateadot">Sapateado</input>
<br/>
<label for="convites">Convites:</label>
<input type="text" name="convites" required/>
<br/>
<hr>
<label for="valor">Valor:</label>
<input type="text" name="valor" readonly/>
<br/>
<input type="reset" name="limpar" value="Limpar">
<input type="submit" name="enviar" value="Enviar">
</fieldset>
</form>
</div>
</section>
<footer class="ender">
<div>Av. Fred Ataire 234</div>
<div>Tel: (21) 1234-5678</div>
<div><a href="mailto:[email protected]" target="_top">[email protected]/div>
</footer>
</body>
<html>