forked from antaresvalle/data-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (33 loc) · 1.19 KB
/
index.html
File metadata and controls
33 lines (33 loc) · 1.19 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Data Dashboard</title>
<link rel="stylesheet" href="./css/main.css">
<link href=“https://fonts.googleapis.com/css?family=Roboto:300,400,500,700” rel=“stylesheet”>
</head>
<body>
<main id="main-container">
<center>
<img class="logo-inicio" src="assets/images/Laboratoria_isotipo_RGB-02.png">
<h2>¡Bienvenid@s!</h2>
<h1>Selecciona la sede de tu interés</h1>
<select id="sede" name="Sede">
<option disabled selected value> Sede </option>
<option value="AQP">Arequipa</option>
<option value="CDMX">Ciudad de México</option>
<option value="LIM">Lima</option>
<option value="SCL">Santiago de Chile</option>
<br>
<input id="btn-entrar" type="button" class="entrar" value="Entrar">
</select>
</center>
</main>
<!-- Base de datos -->
<script src="./js/data.js"></script>
<!-- Aquí va tus archivos JS -->
<!-- <script src="./js/overview.js"></script> -->
<script src="./js/app.js"></script>
<!-- <script src="./js/overview.js"></script> -->
</body>
</html>