-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (42 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
39
40
41
42
43
44
45
46
47
<!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">
<title>Keyboard Practice</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.1/css/bulma.min.css" />
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="hero content is-fullheight">
<div class="hero-body">
<div class="container is-size-4">
<h1>Programming Practice</h1>
<p>Practice common keyboard shortcuts and refactors with JavaScript</p>
<h4>Objectives</h4>
<ul>
<li>Navigate this page with <kbd>tab</kbd> and <kbd>shift + tab</kbd></li>
<li>Practice common keyboard shortcuts</li>
<li>Simulate real-world refactors</li>
<li>Challenge attention to detail in syntax</li>
</ul>
<p id="start-here">hit <button class="kbd" autofocus>tab</button> to start</p>
</div>
</div>
</header>
<form id="game">
</form>
<footer id="congrats">
🎉 🎊 🥂
</footer>
<time id="timer"></time>
<span id="complete"></span>
<span id="message"></span>
<span id="click-mask"></span>
<script src="https://cdnjs.cloudflare.com/ajax/libs/showdown/1.8.6/showdown.min.js"></script>
<script src="timer.js"></script>
<script src="challenges.js"></script>
<script src="app.js"></script>
</body>
</html>