-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (31 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
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Mathdrops is a fun and educational game to improve your math skills.">
<title>Mathdrops</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<main hidden>
<div class="wrapper">
<div class="meta">
<div class="score">Score – <span class="js-score">0</span></div>
<div class="best">Best score – <span class="js-best-score">0</span></div>
</div>
<div class="container js-container">
<canvas></canvas>
<input type="text" placeholder="Type answers" autofocus>
</div>
<button title="New game">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8"/>
<path d="M3 3v5h5"/>
</svg>
</button>
</div>
</main>
<script type="module" src="./main.js"></script>
</body>
</html>