-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.html
37 lines (37 loc) · 1.06 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=yes">
<title>Tyspeed</title>
<link rel="icon" href="https://cdn-icons-png.flaticon.com/128/1041/1041157.png">
<link rel="stylesheet" href="Style.css">
</head>
<body>
<!-- <nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Contact Us</a></li>
<li class = "sign-in"><a href="#">Sign in</a></li>
</ul>
</nav> -->
<main>
<h1>
<img src="https://cdn-icons-png.flaticon.com/128/1041/1041157.png">
Tyspeed
</h1>
<div id="header">
<div id="info"></div>
<div id="buttons">
<button id="newGameBtn">New game</button>
</div>
</div>
<div id="game" tabindex="0">
<div id="words"></div>
<div id="cursor"></div>
<div id="focus-error">Click here to focus</div>
</div>
</main>
<script src="Script.js"></script>
</body>
</html>