-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (39 loc) · 1.44 KB
/
index.html
File metadata and controls
49 lines (39 loc) · 1.44 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Une Application Météo</title>
<script src="main.js" defer></script>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
</head>
<body>
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8">
<!-- Titre -->
<h1 class="text-center mt-5">Météo</h1>
<!-- Ville / Temperature -->
<div class="text-center">
<span id="ville">paris</span>
<div id="temperature">
<span id="temperature_label">
xx.x
</span> °C
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-md-8 text-center">
<!-- Changer de ville -->
<div id="changer" class="mt-2 text-center p-3 text-white font-weight-bold text-uppercase d-inline-block">
Changer de ville
</div>
</div>
</div>
</div>
</body>
</html>