-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (46 loc) · 1.88 KB
/
index.html
File metadata and controls
55 lines (46 loc) · 1.88 KB
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 lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Number Controls</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="card" role="region" aria-label="Number controls">
<!-- <h1 class="title">Five Number Controls</h1> -->
<div class="light" id="flasher" title="Click to toggle info" aria-hidden="false"></div>
<div class="side-text">Here is a panel of numbers ranging from 1 to 6. Each set of
instructions will increase or decrease the numbers. What is the minimum number of
times each instruction must be selected so that the numbers read 3333?</div>
<div class="main-row">
<div class="controls" >
</div>
<aside class="side-info" aria-label="Illustration">
<img src="lock2.png" alt="Illustration" class="side-img" />
</aside>
</div>
<div class="main-row">
<div class="controls" id="controls">
<!-- number rows generated by script -->
</div>
<aside class="side-info" aria-label="Illustration">
<img src="lock.png" alt="Illustration" class="side-img" />
</aside>
</div>
<div class="dict-area">
<div class="dict-row">
<button class="small-btn" id="reset">Reset</button>
</div>
<div class="status-row">
<!-- <div id="hashOut" class="hash-out">sum=0 index=0</div> -->
<!-- <div id="status" class="status">auto-playing (unit=250ms)</div> -->
</div>
<!-- <div style="margin-top:8px;font-size:12px;color:var(--muted)">Edit the `DICT` array inside `script.js` to control which words are selected.</div> -->
</div>
</div>
<!-- load dictionary first (local file) -->
<script src="dict.js"></script>
<script src="script.js"></script>
</body>
</html>