-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (26 loc) · 1023 Bytes
/
index.html
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>
<head>
<meta charset="UTF-8">
<title>Altitutor UCAT Timer</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A timer for the UCAT exam"/>
<link rel="stylesheet" type="text/css" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Oxygen:wght@400;700&display=swap" rel="stylesheet">
<link rel="icon" type="image/x-icon" href="favcon.png">
</head>
<body>
<div class="timer-container">
<img src="logo.png" alt="logo" id="logo">
<h2 id="section-title"></h2>
<h1 id="timer">00:00</h1>
<div class="button-container">
<button id="start-button" onclick="startTimer()">Start</button>
<button id="pause-button" onclick="pauseTimer()" disabled>Pause</button>
<button id="next-button" onclick="nextSection()" disabled>Next</button>
<button id="end-button" onclick="endProgram()" disabled>End</button>
</div>
</div>
<script src="timer.js"></script>
</body>
</html>