-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpractice.html
More file actions
54 lines (53 loc) · 1.45 KB
/
practice.html
File metadata and controls
54 lines (53 loc) · 1.45 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
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
media="screen and (min-width: 601px)"
href="styles.css"
/>
<link
rel="stylesheet"
media="screen and (max-width: 600px)"
href="mobile.css"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.13.0/css/all.css"
/>
<link
rel="icon"
href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🩷</text></svg>"
/>
<title>Practice Mode</title>
</head>
<body>
<center>
<div class="header">
<div>
<p>Stopwatch</p>
<p class="counter">
<span class="hour"></span>:<span class="minute"></span>:<span
class="second"
></span>
</p>
</div>
<div>
<p>Score</p>
<p class="score"></p>
</div>
</div>
<div class="container">
<p class="question-number"></p>
<h1 class="question"></h1>
<input type="number" id="attempt" placeholder="Your Answer..." />
<p>Press 'Enter' to submit</p>
<button class="end-game">End Practice</button>
</div>
</center>
<script src="practice.js"></script>
</body>
</html>