-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (20 loc) · 752 Bytes
/
Copy pathindex.html
File metadata and controls
23 lines (20 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<html>
<head>
<title>Speed Gauge</title>
<link href="style.css" type="text/css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="gauge-wrap">
<canvas id="gauge"></canvas>
<div class="speed">0 KM/H</div>
<div class="start-stop">
<button class="start" >START</button>
<button class="brake">BRAKE</button>
<button class="stop">STOP</button>
</div>
</div>
<script src="https://bernii.github.io/gauge.js/dist/gauge.min.js"></script>
<script src="app.js"></script>
</body>
</html>