-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmoda.html
49 lines (42 loc) · 1.52 KB
/
moda.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
<!DOCTYPE html>
<html lang="en">
<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" />
<title>Moda</title>
<link rel="stylesheet" href="./css/moda-styles.css">
<script src="./js/moda.js"></script>
</head>
<body>
<header>
<h1>Calculo de la moda</h1>
<p>Este es el 5to taller del curso</p>
</header>
<section class="cuerpo">
<div class="cuerpoFormulario">
<h2>Vamos a calcular la Moda</h2>
<form>
<label for="InputDato1">Ingresar dato 1</label>
<input id="InputDato1" type="number" />
<label for="InputDato2">Ingresar dato 2</label>
<input id="InputDato2" type="number" />
<label for="InputDato3">Ingresar dato 3</label>
<input id="InputDato3" type="number" />
<label for="InputDato4">Ingresar dato 4</label>
<input id="InputDato4" type="number" />
<label for="InputDato5">Ingresar dato 5</label>
<input id="InputDato5" type="number" />
<label for="InputDato6">Ingresar dato 6</label>
<input id="InputDato6" type="number" />
<div class="button-container">
<button class="primary-button" type="button" onclick="calcularModa()">
Calcular la moda de los datos ingresados
</button>
</div>
<p id="ResultP"></p>
</form>
</div>
</section>
</body>
</html>