-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSpeedDetector.html
More file actions
34 lines (30 loc) · 909 Bytes
/
SpeedDetector.html
File metadata and controls
34 lines (30 loc) · 909 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>StudentGrader</title>
</head>
<body style="background-color: grey; margin-left: 25%">
<h1>Speed Detector Program</h1>
<p1>Kindly Enter your Current Speed</p1>
<div
style="
border: darkgoldenrod;
border-width: 50cm;
background-color: rgb(242, 255, 0);
margin-right: 25%;
"
>
<form>
<label for="speed">Speed</label>
<input type="number" id="speed" />
</form>
<button id="button" onclick="calculateSpeed()">calculate Speed</button>
<h3 id="result">Result:</h3>
<h3 id="licenseStatus">License Status</h3>
<script src="/codechallenge_1/JS/Speeddetector.js"></script>
</div>
<footer>by Samson Chelgut</footer>
</body>
</html>