-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspeedometer.html
44 lines (31 loc) · 1.42 KB
/
speedometer.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
<!DOCTYPE html>
<html class="h-100" lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<link rel="stylesheet" href="./style/globalstyle.css">
<title>Ride</title>
</head>
<body class="h-100">
<div class="container d-flex flex-column justify-content-between h-100">
<nav class="navbar justify-content-end">
<a class="btn btn-close border border-dark p-2" href="./index.html"></a>
</nav>
<div class="d-flex flex-column justify-content-center align-items-center
bg-dark text-light flex-fill mb-3 rounded-3">
<span class="fw-bold" style="font-size: 120px;" id="speed">0</span>
<span style="font-size: 30px;">Km/h</span>
</div>
<button id="start" class="btn btn-primary mb-3">
<span class="display-3">Start</span>
</button>
<button id="stop" class="btn btn-danger d-none mb-3">
<span class="display-3">Stop</span>
</button>
</div>
<script src="./scripts/storage.js"></script>
<script src="./scripts/speedometer.js"></script>
</body>
</html>