-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (33 loc) · 1.02 KB
/
Copy pathindex.html
File metadata and controls
35 lines (33 loc) · 1.02 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
33
34
35
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Globe Météo 3D</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="globe"></div>
<div id="zone-recherche">
<input id="recherche" type="text" placeholder="Rechercher un pays…" autocomplete="off">
<div id="suggestions"></div>
</div>
<div id="choix-langue">
<button id="langue-fr">FR</button>
<button id="langue-en">EN</button>
</div>
<button id="retour-monde" class="cache">← Retour au monde</button>
<div id="panneau-meteo" class="cache">
<button id="fermer-meteo">✕</button>
<div id="contenu-meteo"></div>
</div>
<div id="tableau-chaleur" class="cache">
<h3 id="titre-chaleur">Records de chaleur</h3>
<p id="progression-chaleur"></p>
<ol id="liste-chaleur"></ol>
</div>
<script src="https://unpkg.com/globe.gl"></script>
<script src="config.js"></script>
<script src="main.js"></script>
</body>
</html>