-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbeta-tablero.html
38 lines (36 loc) · 1.46 KB
/
beta-tablero.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script src="https://cdn.rawgit.com/jsoma/tabletop/master/src/tabletop.js"></script><!-- Tabletop -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.3.0/d3.js"></script><!-- D3 -->
<script type="text/javascript" src="js/beta-extractTablero.js"></script>
<link rel="stylesheet" href="css/beta-Table.css">
</head>
<body>
<table id="desktopTable">
<thead class="tableHead">
<tr>
<td rowspan="2">Indicador</td>
<td rowspan="2">Unidad</td>
<td colspan="3">Últimos Datos</td>
<td colspan="3">Acumulado</td>
</tr>
<tr>
<td>Período</td>
<td>Valor</td>
<td>Variacion</td>
<td>Período</td>
<td>Valor</td>
<td>Variacion</td>
</tr>
</thead>
</table>
<div id="mobileTable">
</div>
</body>
</html>