-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfuncionesEstadisticas.html
More file actions
110 lines (92 loc) · 2.24 KB
/
Copy pathfuncionesEstadisticas.html
File metadata and controls
110 lines (92 loc) · 2.24 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
<!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">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@200;500;700&family=Quicksand:wght@300;500;700&display=swap"
rel="stylesheet">
<title>funciones Estadisticas</title>
<style>
body {
width: 100%;
height: 100%;
background-color: #efebe9;
display: flex;
flex-direction: column;
align-items: center;
font-family: 'Inter', sans-serif;
font-family: 'Quicksand', sans-serif;
}
.container {
width: 500px;
height: 500px;
border: 1px solid #bdb9b7;
background-color: #62757f;
display: flex;
flex-direction: column;
align-items: center;
}
.container h3 {
color: #ffffff;
text-align: center;
}
.formulario {
display: flex;
flex-direction: column;
align-items: center;
background-color: #ffffff;
width: 498px;
height: 370px;
padding: 10px 0px 0px 0px;
}
.formulario ul {
font-weight: bold;
list-style: none;
padding-inline-start: 0px;
color: black;
margin: 10px 0px 20px 0px;
align-items: stretch;
padding: 0px;
}
.formulario ul li {
font-weight: bold;
text-decoration: none;
color: #4b636e;
}
.formulario label {
font-weight: bold;
margin: 0px;
padding: 0px;
}
.formulario input {
width: 250px;
height: 25px;
margin: 0px 0px 16px 0px;
padding: 0px 10px;
border: 1px solid #62757f;
}
.formulario button {
color: #ffffff;
font-weight: bold;
cursor: pointer;
width: 250px;
height: 32px;
border: 1px solid #62757f;
background-color: #a69b97;
border-radius: 8px;
margin: 10px 0px 15px 0px;
padding: 5px;
}
</style>
</head>
<body>
<header>
<h1>Funciones Estadisticas</h1>
</header>
<script src="./funcionesEstadisticas.js"></script>
</body>
</html>