-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (39 loc) · 1.66 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
<!DOCTYPE html>
<html>
<head lang="en">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Información de COVID-19 en EUA</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.1.3/css/bootstrap.min.css" rel="stylesheet" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link href="https://cdn.datatables.net/1.13.4/css/dataTables.bootstrap5.min.css" rel="stylesheet" />
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.1.3/js/bootstrap.bundle.min.js"></script>
<script src="https://cdn.datatables.net/1.13.4/js/jquery.dataTables.min.js"></script>
<script src="https://cdn.datatables.net/1.13.4/js/dataTables.bootstrap5.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script src="../final/script.js"></script>
<script src="../final/chart.js"></script>
<script src="../final/test.js"></script>
</head>
<body>
<h1 class="text-center pt-5 pb-4">Resultados de COVID-19 en Estados Unidos por día</h1>
<div id="contenedor" class="container">
<table id="data-table" class="table table-striped" style="width:100%">
<thead>
<tr>
<th>Id</th>
<th>Fecha</th>
<th>Casos positivos</th>
<th>Casos negativos</th>
<th>Muertes</th>
<th>Total de pruebas</th>
</tr>
</thead>
<tbody></tbody>
</table>
<div class="container">
<canvas id="myChart"></canvas>
</div>
</div>
</body>
</html>