-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (30 loc) · 1.31 KB
/
index.html
File metadata and controls
32 lines (30 loc) · 1.31 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<title>Global House Purchase Decision</title>
<link rel="stylesheet" href="css/style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" integrity="sha512-..." crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="https://d3js.org/d3.v7.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/topojson-client@3"></script>
</head>
<body>
<header>
<h1>Global House Purchase Decision Dashboard</h1>
<nav>
<button onclick="loadViz('maxime')">Prix moyen au m²</button>
<button onclick="loadViz('matice')">Densité des biens</button>
<button onclick="loadViz('julien')">Attractivité</button>
<button onclick="loadViz('romain')">Historique des prix</button>
<button onclick="loadViz('antoine')">Value-for-Money</button>
</nav>
</header>
<main id="viz-container">
<p>Sélectionnez une visualisation ci-dessus.</p>
</main>
<script src="js/main.js"></script>
</body>
</html>