-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathColegio Olimpo.html
97 lines (96 loc) · 2.81 KB
/
Colegio Olimpo.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
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Colegio Olimpo</title>
<link rel="stylesheet" href="notas-escolares.css">
</head>
<body>
<div id="contenedor">
<h1>COLEGIO OLIMPO</h1>
<table>
<caption>NOTAS DEL PRIMER SEMESTRE</caption>
<thead>
<th class="head" rowspan="30px">alumno</th>
<th class="head">nota 1</th>
<th class="head">nota 2</th>
<th class="head">nota 3</th>
<th class="head">promedio</th>
</thead>
<tbody id="pepito">
<td class="alumno">pepito</td>
<td class="nota1">5</td>
<td class="nota2">4</td>
<td class="nota3">5</td>
<td class="nota-final"></td>
</tbody>
<tbody id="gabriela">
<td class="alumno">gabriela</td>
<td class="nota1">9</td>
<td class="nota2">10</td>
<td class="nota3">9</td>
<td class="nota-final"></td>
</tbody>
<tbody id="pedro">
<td class="alumno" >pedro</td>
<td class="nota1">7</td>
<td class="nota2">7</td>
<td class="nota3">8</td>
<td class="nota-final"></td>
</tbody>
</table>
</div>
<div id="botones">
<button type="submit" id="buscador" class="bto" onclick="estudiante();"><strong>BUSCAR...</strong></button>
<button type="submit" id="ingresoNota" class="bto" onclick="colocarNota();"><strong>INGRESAR NOTA:</strong></button>
</div>
<div id="compras">
<ol id="lista">
<li>LACTEOS</li>
<ul>
<li>mantequilla</li>
<li>leche</li>
<li>yogurt</li>
</ul>
<li>EMBUTIDOS</li>
<ul>
<li>jamon</li>
<li>costillas</li>
<li>tocino</li>
</ul>
<li>FRUTAS</li>
<ul>
<li>durazno</li>
<li>manzana</li>
<li>sandia</li>
</ul>
<li>VERDURAS</li>
<ul>
<li>tomates</li>
<li>pimiento</li>
<li>cebolla</li>
</ul>
<li>CARNES</li>
<ul>
<li>tomahak</li>
<li>pollo</li>
<li>mollejas</li>
</ul>
</ol>
</div>
<div id="botonesLista">
<button type="submit" class="btn-lista" onclick="addProduct()"><strong>agregar alimento</strong></button>
<button type="submit" class="btn-lista" onclick="restProduct()"><strong>quitar alimento</strong></button>
</div>
</body>
<!-- <script src="desafio1.js"></script> -->
<!-- <script src="desafio2.js"></script> -->
<!-- <script src="game.js"></script> -->
<!-- <script src="desafio5.js"></script> -->
<!-- <script src="desafio6.js"></script> -->
<!-- <script src="desafio7.js"></script> -->
<script src="desafio8.js"></script>
<script src="desafio9.js"></script>
<script src="desafio10.js"></script>
</html>