-
Notifications
You must be signed in to change notification settings - Fork 0
/
metro.html
39 lines (34 loc) · 1016 Bytes
/
metro.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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Passage Métro 1</title>
<link rel="stylesheet" href="./css/app.css">
</head>
<body>
<div class="menu">
<div>
<div class="logoLigne">
<img src="img/metro-logo.svg" id="icon" alt="">
</div>
<h1 id="station"></h1>
</div>
<div style="display: flex; flex-direction: column;">
<form action="">
<input type="text" id="stationSearch" oninput="rechercherStation()" placeholder="Châtelet, ...">
<ul class="" id="stationSearchResults"></ul>
</form>
</div>
</div>
<div style="display: flex;">
<div id="horaires_s1" style="width: 100%; padding: 0 2rem">
</div>
<div id="horaires_s2" style="width: 100%; padding: 0 2rem">
</div>
</div>
<div class="now" id="now"></div>
<script src="./js/app.js"></script>
<script src="./js/metro.js"></script>
</body>
</html>