-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
97 lines (95 loc) · 4.28 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
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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./index.css">
<title>JS Challenge | Reto 1</title>
</head>
<body>
<main class="main">
<h1 class="titulo">Calculadora del cinéfilo empedernido</h1>
<form id="formulario">
<p class="fila-cine">
<label for="PeliculasPorMes">¿Cuantas películas/series ves al mes?</label>
<input id="PeliculasPorMes" type="number" required min="1">
</p>
<p class="fila-cine">
<label for="CostoPorBoleto">Costo de entrada al cine</label>
<input id="CostoPorBoleto" type="number" required min="1">
</p>
<section class="plataformas">
<table class="tabla-plataformas">
<p>Elige las plataformas en las que están disponibles estas películas/series:</p>
<thead>
<tr>
<th class="tabla-plataformas__header-left">Plataforma</th>
<th class="tabla-plataformas__header-right">Costo</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<input type="checkbox" id="Netflix">
<label for="Netflix">Netflix</label>
</td>
<td>
<input type="number" id="CostoNetflix" value="139" required min="0">
</td>
</tr>
<tr>
<td>
<input type="checkbox" id="HBOMax">
<label for="HBOMax">HBO Max</label>
</td>
<td>
<input type="number" id="CostoHBOMax" value="99" required min="0">
</td>
</tr>
<tr>
<td>
<input type="checkbox" id="Amazon">
<label for="Amazon">Amazon Prime</label>
</td>
<td>
<input type="number" id="CostoAmazon" value="99" required min="0">
</td>
</tr>
<tr>
<td>
<input type="checkbox" id="Disney">
<label for="Disney">Disney+</label>
</td>
<td>
<input type="number" id="CostoDisney" value="159" required min="0">
</td>
</tr>
<tr>
<td>
<input type="checkbox" id="Apple">
<label for="Apple">Apple TV</label>
</td>
<td>
<input type="number" id="CostoApple" value="69" required min="0">
</td>
</tr>
<tr>
<td>
<input type="checkbox" id="Claro">
<label for="Claro">ClaroVideo</label>
</td>
<td>
<input type="number" id="CostoClaro" value="115" required min="0">
</td>
</tr>
</tbody>
</table>
</section>
<button id="BotonEnviar" class="btn" type="button" onclick="">¡Dime por favor en dónde me sale mas barato!</button>
</form>
<p id="Mensaje" class="mensaje"></p>
</main>
<script src="./index.js"></script>
</body>
</html>