-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontestpage.html
More file actions
45 lines (45 loc) · 1.59 KB
/
contestpage.html
File metadata and controls
45 lines (45 loc) · 1.59 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
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contest</title>
<link rel="stylesheet" href="styles/headerandsidebar.css">
<link rel="stylesheet" href="styles/contestpage.css">
<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=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:wght@100;400;500;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="header">
<div class="header-left">
<h2>TypeRivals</h2>
</div>
<div class="header-right">
<div class="public-profile">
</div>
<img class="logout" src="icons/arrow-right-from-bracket-solid (1).svg">
</div>
</div>
<div class="progress-div verify-contest">
<progress></progress>
</div>
<!-- <div class="realtime-stats">
<div class="timer"><span>30</span>seconds</div>
<div class="realtime-WPM">
<div>0</div>
<p>WPM</p>
</div>
<div class="realtime-accuracy">
<div>0</div>
<p>Accuracy</p>
</div>
</div> -->
<!-- <div class="typing-container">
<div class="target-text"></div>
<textarea class="input-area"></textarea>
</div> -->
<script type="module" src="scripts/firebaseinit.js"></script>
<script type="module" src="scripts/contest.js"></script>
</body>
</html>