-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (32 loc) · 1.15 KB
/
index.html
File metadata and controls
33 lines (32 loc) · 1.15 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Workout Tracker</title>
<link rel="stylesheet" type="text/css" href="sheet.css">
<script src="script.js" defer></script>
</head>
<body bgcolor="lavender">
<div class="container">
<div class="block">
<h1 id="heading">Track Your Reps and Time Efficiently </h1>
<button id="btn1" onclick="show();startWorkout()">Begin Workout ►</button>
<h1 id="stopwatch">00:00:00</h1>
</div>
</div>
<div class="block1">
<label for="exerciseName"></label>
<input type="text" id="Textbox" class="input" placeholder="Input Exercise">
<label for="exerciseTime"></label>
<input type="text" id="Timebox" class="input" placeholder="Specify time 00Hr:00Min:00Sec">
<button class="newbut" onclick="addexercise()" id="Workoutadd">Add To Workout Plan</button>
</div>
<div id="block">
<h1 id="output"></h1>
</div>
<div id="endblock">
<button id="lastbutton" onclick="endSession()">End Session</button>
</div>
</body>
</html>