-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (34 loc) · 1.21 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
45
46
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>U-TAD - Master de Telefonica Big Data - Trabajo 2</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<link href='https://fonts.googleapis.com/css?family=Lato:400,300,400italic,700' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="container">
<h1>Aerolineas</h1>
<h2>Ranking de actividad y facturación de aerolíneas que operan en España</h2>
<!-- Select box -->
<form class="form-inline">
<div class="form-group">
<label for="rankingType">Group by</label>
<select class="form-control" id="ranking-type">
<option value="viajeros">Viajeros/mes</option>
<option value="facturacion">Facturación (Millones €)</option>
</select>
<input type="button" id="ordenar" onclick="ordenar_data()" value="Orden >>">
</div>
</form>
<div id="chart-area"></div>
</div>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/d3.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>