-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (29 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NewsTap Typing</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
<link href="styles.css" rel="stylesheet">
</head>
<body>
<div class="container">
<h1 class="game-title">NewsTap Typing</h1>
<p class="welcome-message">Welcome! Get ready to type some news headlines. </p>
<div id="test-container">
<div id="start-container">
<button onclick="startGame()" class="btn-start">Start Game</button>
</div>
<div id="content" style="display: none;"></div>
<textarea id="user-input" class="input-box" style="display: none;" rows="6" autofocus></textarea>
<p id="result" class="result-text"></p>
<p id="gross-speed" class="hidden"></p>
<p id="accuracy" class="hidden"></p>
<p id="time-taken" class="hidden"></p>
<p id="errors-made" class="hidden"></p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>