-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (53 loc) · 2.71 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
47
48
49
50
51
52
53
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<!-- bootstrap -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="lib/leaflet.css"></link>
<link rel="stylesheet" href="lib/dc.css"></link>
<link rel="stylesheet" href="css/style.css"></link>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
<!-- Crossfilter + reductio + d3 + dcjs -->
<script src="lib/crossfilter.min.js"></script>
<script src="lib/reductio.min.js"></script>
<script src="lib/d3.min.js"></script>
<script src="lib/dc.min.js"></script>
</head>
<body>
<nav class="navbar navbar-expand-sm bg-dark navbar-dark" id = "header">
<a class = "navbar-brand" href="#">Accueil</a>
<a class = "navbar-brand" href="#">Graphiques</a>
<a class = "navbar-brand" href="https://www.youtube.com/watch?v=L6GDdI-PhqA" target = "_blank">Aide</a>
<a class ="navbar-brand" href="#" id = "avatar">
Azule, Aghhh.
<img src="img/avatar.png" alt="Logo" style="width:40px;">
</a>
</nav>
<!-- graphiques -->
<div class="container">
<div class="input-group mb-1">
<select class="custom-select" id="input-transaction">
<option selected>Choisir un type de transaction</option>
<option value="Vente">Ventes</option>
<option value="Location">Locations</option>
</select>
</div>
<div class="row">
<div class="plot col-sm-6" id = "prix-m2-ville"></div>
<div class="plot col-sm-6" id = "nb-annonces-surface"></div>
</div>
<br>
<div class="row">
<div class="plot col-sm-6" id = "nb-annonce-temps"></div>
<div class="plot col-sm-6" id = "nb-annonce-dpe"></div>
</div>
</div>
<!-- chargement scripts -->
<!-- <script src="src/containers.js"></script> -->
<script src="src/app.js"></script>
</body>
</html>