This repository has been archived by the owner on Dec 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (55 loc) · 1.75 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
49
50
51
52
53
54
55
<!DOCTYPE html>
<html>
<head>
<title>Random sequence memory game</title>
<meta name="Content-type" content="text/html;charset=utf-8" />
<meta name="author" content="Jason Rammoray" />
<meta name="keywords" content="memory,game,sequence memory" />
<link rel="stylesheet" type="text/css" href="style.css" />
<script type="text/javascript" src="logic.js"></script>
</head>
<body>
<h1>Random sequence memory game</h1>
<div id="main">
<div id="wrapper">
<section id="io">
<input type="text" class="sequence output" />
</section>
<canvas id="timer">
</canvas>
<section id="hardlevel">
<div class="difficulty option">
<input type="radio" name="difficulty" value="easy" id="easy" checked/>
<label for="easy">Easy</label>
</div>
<div class="difficulty option">
<input type="radio" name="difficulty" value="medium" id="medium" />
<label for="medium">Medium</label>
</div>
<div class="difficulty option">
<input type="radio" name="difficulty" value="hard" id="hard" />
<label for="hard">Hard</label>
</div>
</section>
<section id="sequencetype">
<div class="mode option">
<input type="radio" name="mode" value="alphabetical" id="alpha" checked/>
<label for="alpha">Alphabetical</label>
</div>
<div class="mode option">
<input type="radio" name="mode" value="numeric" id="num" />
<label for="num">Numeric</label>
</div>
<div class="mode option">
<input type="radio" name="mode" value="alphanumeric" id="alphanum" />
<label for="alphanum">Alphanumeric</label>
</div>
</section>
<div id="generator">Generate</div>
<div id="check">Check</div>
</div>
<footer>
</footer>
</div>
</body>
</html>