-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (32 loc) · 1.44 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
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<title>Group 1</title>
<meta charset="UTF-8">
<meta name="keywords" content="Namias, Group 1, ICT 2, YASC, Jhon Keneth Namias, Type racer, CAPSTONE PROJECT, PERFORMANCE TASK, NAMIAS cutie">
<meta name="description" content="Based on Type racer but much simplier version of it.">
<meta name="author" content="Jhon Keneth Namias">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="content">
<h1 class="content-heading">How fast are you?</h1>
<p>Try to reach the maximum score of 30</p><sr>
<p class="red">Score less than 10: Bad</p>
<p class="yellow">Score between 10 and 20: Good</p>
<p class="green">Score higher than 20: Excellent</p>
</div>
<div class="container">
<h1 class="card-heading">[Group 1] AdventureTyper</h1>
<p class="card-para">Type the following word:</p>
<h2 id="word"></h2>
<input type="text" id="text" autocomplete="off" placeholder="Type here...">
<p class="time-container">Time left: <span id="time-container">30s</span></p>
<p class="score-container">Score: <span id="score-container">0</span></p>
<div id="game-over" class="game-over"></div>
</div>
<script type="text/javascript" src="script.js"></script>
</body>
</html>