-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnum.html
More file actions
31 lines (31 loc) · 775 Bytes
/
num.html
File metadata and controls
31 lines (31 loc) · 775 Bytes
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
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Typing game</title>
<link href="https://fonts.googleapis.com/css?family=Lato:400,700" rel="stylesheet">
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="wrapper">
<h1>Strong Finger Typing Game</h1>
<button>START</button>
<div class="outerWrap">
<div class="scoreWrap">
<p>Score</p>
<span class="score">0</span>
</div>
<div class="timeWrap">
<p>Time left</p>
<span class="time">30</span>
</div>
</div>
<div class="wordsWrap">
<p class="words"></p>
</div>
</div>
<script src="js/num.js"></script>
<script src="js/FileSaver.js"></script>
</body>
</html>