forked from lithis/drdru.github.io
-
Notifications
You must be signed in to change notification settings - Fork 1
/
how_it_works.html
101 lines (72 loc) · 1.53 KB
/
how_it_works.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<meta charset="utf-8"/><!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<style>
body {
font-weight: bold;
font-size: 120%;
margin-left : 10%;
}
.logo{
text-align: center;
background-color: white;
border:8px;
border-style:solid;
padding: 20px;
border-radius: 25px;
}
.normal {
font-size: 150%;
}
.lefter {
font-size: 75%;
margin-left : 20px;
}
.logo{
text-align: center;
background-color: white;
border:8px;
border-style:solid;
padding: 20px;
border-radius: 25px;
}
#start_link {
font-size: 100%;
text-align: center;
background-color: white;
border:5px;
border-style:solid;
padding: 10px;
border-radius: 25px;
}
</style>
</head>
<body>
<p>Once you click Start sentences will appear on the screen.
<br>
If the sentence is True click 正 else click 僻.<br>
If you have a doubt assume it is true.<br>
Each time you select the wrong answer a cat starts crying
<br>
😿
<br>
No one likes cryings cats so make sure to click the right button !
<br>
If you don't know a word you can click on it and see its definition.
<br>
The definition uses either a picture or Japanese words.
<br>
The Japanese words composing the definition are clickable themselves.
<br>
Clever isn't it ;-)
</p>
<p id="start_link"><a href="./emoquestions/1">Start</a></p>
<script src="https://unpkg.com/twemoji@latest/dist/twemoji.min.js" crossorigin="anonymous"></script>
<script>
twemoji.parse(
document.body,
{ base: 'https://cdn.jsdelivr.net/gh/twitter/[email protected]/assets/' }
)
</script>
</body>