-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathw12laps.HTML
More file actions
30 lines (23 loc) · 941 Bytes
/
Copy pathw12laps.HTML
File metadata and controls
30 lines (23 loc) · 941 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>W12 Lap Recorder</title>
<link rel = "stylesheet" href="main.css">
<!-- Link the JavaScript file to this page -->
<script src="code.js"></script>
</head>
<body>
<!-- this is the page title -->
<h1> Lap Recorder JavaScript Practive</h1>
<!-- use this div to display information or error messages to the user -->
<div id="messageDiv"> </div>
<!-- when clicked, this button will record a lap time -->
<button onclick="recordLap();">Record Lap</button>
<!-- when clicked, this will show any recorded lap times -->
<button onclick="displayLaps();">Display Lap Times</button>
<!-- this dic will show the lap times that have been recorded by the first button -->
<div id="lapsDiv"></div>
</body>
</html>