-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgenerarExcel.html
More file actions
51 lines (42 loc) · 1.81 KB
/
generarExcel.html
File metadata and controls
51 lines (42 loc) · 1.81 KB
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Generador de Excel - Distribución Normal</title>
<link rel="stylesheet" href="./css/bien.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
</head>
<body>
<nav class="menu">
<div>
<a href="index.html" class="logo">
<img src=" img/logo.svg" alt="Logo" width="150px">
</a>
<h3>Herramientas</h3>
</div>
</nav>
<div class="contenido">
<div id="genExcel">
<h1>Generador de Excel con Distribución Normal</h1>
<label for="tamaño">Tamaño de datos:</label>
<input type="number" id="tamaño" value="100" min="1" /><br /><br />
<label for="media">Media:</label>
<input type="number" id="media" value="0" /><br /><br />
<label for="desviacion">Desviación estándar:</label>
<input type="number" id="desviacion" value="1" min="0.01" /><br /><br />
<label for="cantidadDecimales">Cantidad de decimales:</label>
<input type="number" id="cantidadDecimales" value="2" min="0" /><br /><br />
<label><input type="checkbox" id="negativos" /> Permitir números negativos</label><br /><br />
<label><input type="checkbox" id="minimo" /> Aplicar valor mínimo</label>
<input type="number" id="minimoValor" style="display: none;" /><br /><br />
<label><input type="checkbox" id="maximo" /> Aplicar valor máximo</label>
<input type="number" id="maximoValor" style="display: none;" /><br /><br />
<button onclick="generarExcel()">Generar Excel</button>
</div>
<script src="https://unpkg.com/xlsx/dist/xlsx.full.min.js"></script>
<script src="js/generarExcel.js"></script>
<script src="js/menu.js"></script>
</div>
</body>
</html>