-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (68 loc) · 2.82 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Wordplay One</title>
<meta name="description" content="Learning important things without noticing" />
<link rel="canonical" href="https://www.wordplay.one/" />
<meta name="author" content="Michael McGinnis" />
<meta name="robots" content="noindex,nofollow" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@wordplayone" />
<meta name="twitter:creator" content="@wordplayone" />
<meta name="twitter:image" property="og:image" content="/wordplay.png" />
<meta name="twitter:url" property="og:url" content="https://www.wordplay.one/" />
<meta name="twitter:title" property="og:title" content="Wordplay.One" />
<meta name="twitter:description" property="og:description" content="Learning important things without noticing" />
<link rel="me" href="mailto:[email protected]" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/wordplay.manifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="theme-color" content="#ca1cca">
<link href="wordplay.css" rel="stylesheet" />
<script defer src="wordplay.js"></script>
</head>
<body>
<header>
<h1 id="header">Wordplay <span>One</span></h1>
<div id="result">Score!</div>
</header>
<p id="intro">Wordplay One makes it faster to learn things.</p>
<hr />
<div id="main">
</div>
<button id="next" class="next">Next</button>
<footer>
<hr />
• About • Games • Schools • Contact •
</footer>
<div id="triviaJSON">
[{
"questionNumber": 1,
"question": "When was the U.S. Declaration of Independence signed?",
"choices": ["1776", "1774", "1777", "1775"],
"fact" : "The first battle of the American Revolution was April 18, 1775.",
"next": 2
},
{
"questionNumber": 3,
"question": "When was the fax machine invented?",
"choices": ["1843", "1924", "1964", "1948"],
"fact" : "Alexander Bain, between 1843 and 1846, used a clock to synchronize two pendulums to scan a message line by line.",
"next": 4
},
{
"questionNumber": 2,
"question": "Which building was set afire on August 24, 1812?",
"choices": ["The White House", "Parliament Building", "the Reichstag", "Palace of the Nation"],
"fact" : "During the War of 1812, invading British troops set fire to the President's House, the U.S. Capitol, and other Washington DC landmarks.",
"next": 3
}
]
</div>
</body>
</html>