-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpushup.html
More file actions
30 lines (29 loc) · 1.14 KB
/
Copy pathpushup.html
File metadata and controls
30 lines (29 loc) · 1.14 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
<html>
<head>
<link rel="stylesheet" href="pushup.css" />
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Push-Up Counter</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@900&display=swap" rel="stylesheet">
<script src="pushup.js" defer></script>
</head>
<body>
<h2 id="count-el">Zero Push-ups</h2>
<div class="button-container">
<button id="increment-btn" onclick="increment()">PUSH</button>
<button id="start-btn" onclick="countDown()">START</button>
<button id="reset-btn" onclick="reset()">RESET</button>
</div>
<h3 id="timer-el">120 SECONDS REMAIN</h3>
<div id='link'>
<a href="https://apftscore.com" target="_blank">Link</a>
<b id="text-el">to Christopher Hutton's APFT score calculator</b>
</div>
</body>
<h3>
<img src="pushups.jpg" width="460" height="345" />
</h3>
</html>