-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (26 loc) · 959 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title> Memory Trainer </title>
<meta charset="utf-8">
<link rel="stylesheet" href="styles/main.css">
<link rel="stylesheet" href="styles/specific.css">
</head>
<body>
<div id="step1">
<h1> Paste Your Notes Here: </h1>
<button id="start-button">Start Memorization Session</button>
<textarea id="doc"></textarea>
</div>
<div id="step2" hidden>
<h2> Only the first words are shown. Select the lines you cannot remember. </h2>
<button id="done-button">Done</button>
<div id="lines"></div>
</div>
<div id="step3" hidden>
<h2> Congratulations. You have passed the memory test. </h2>
<h2> Please run this test twice with your notes on separate days. </h2>
</div>
<script src="program.js"></script>
</body>
</html>