-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (21 loc) · 776 Bytes
/
Copy pathindex.html
File metadata and controls
21 lines (21 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Alphabet Challenge</title>
<link rel="stylesheet" href="public/index.css" media="screen" charset="utf-8">
</head>
<body onselectstart="return false;">
<label id="themes" onclick="changeTheme()"><strong>Themes</strong></label>
<div id="container">
<h1>Alphabet Challenge</h1>
<div id="stats"></div>
<footer>Press <strong>Space</strong> to restart</footer>
</div>
<audio src="public/clear.wav" id="clear"> </audio>
<audio src="public/wrong.wav" id="wrong"> </audio>
<audio src="public/win.wav" id="win" > </audio>
<audio src="public/lose.wav" id="lose" > </audio>
</body>
<script type="text/javascript" src="public/app.js"></script>
</html>