-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (37 loc) · 1.34 KB
/
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
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Catch Covid-19</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navbar text-light bg-dark">
<div class="col">
<h1 id="usernamearea">Hello Doctor </h1>
<div id="userscore"></div>
<div id="timeleft"></div>
</div>
<div class="col">
<input type="text" placeholder="Input doctor's name" id="username" class="input">
<button id="signupbutton" onclick="signUp()" class="button">Sign Up</button>
</div>
<div class="col">
<button id="startbutton" onclick="reset()" class="button">Start</button>
<button id="resetbutton" onclick="reset()" class="button">Reset</button>
</div>
</nav>
<section >
<script src="main.js"></script>
</section>
<footer class="navbar text-light bg-dark">
<div class="col">
<h1 id="historyscorearea">History: </h1>
</div>
<div class="col">
<h1 id="bestscore">Best Score: </h1>
</div>
</footer>
</body>
</html>