-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
48 lines (44 loc) · 1.53 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
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="css/style.css" type="text/css" />
<title>Typpo</title>
</head>
<body>
<!-- Start -->
<div id="container" class="container--light">
<div class="header">
<h1 id="heading" class="fade-in-right">Typpo</h1>
<div class="p-container"></div>
<img src="images/hippo-talk.png" alt="Typpo Hippo Talk" />
</div>
<div class="input-container fade-in--9">
<h2 class="fade-in">
Type "<span class="highlight">ready</span>" and hit "<span
class="highlight"
>enter</span
>" to START your training!
</h2>
<input type="text" id="input-start" autofocus />
</div>
</div>
<!-- Game Over -->
<div id="game-over" class="fade-in-game-over">
<div class="btn-container">
<p>This button has not been implemented yet...</p>
<p>Sorry for the the inconvinience hehe...</p>
<button class="btn btn-replay">More Training!</button>
<button class="btn btn-quit">Bye Bye...</button>
</div>
</div>
<div id="quit" class="fade-in-game-over"></div>
<script src="js/audio.js"></script>
<script src="js/functions.js"></script>
<script src="js/words.js"></script>
<script src="js/class.js"></script>
<script src="js/main.js"></script>
</body>
</html>