-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (47 loc) · 1.7 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
<!-- using https://github.com/SMenigat/thousand-most-common-words/ and fetch API to randomize flashcards to learn Slovak with
clicking will rotate them
to reveal the english translation
to do: functionality for multiple cards
button to add/increase number of cards present
harder word cards will have holo effects to signify their difficulty
stretch goal: use click and drag to form words into sentences -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/styles.css">
<title>Slovak Learner</title>
</head>
<body>
<div class="sz-card rare-shine">
<span id="sz-word"></span>
<p class="info-text">Click and hold to reveal English translation.</p>
</div>
<div class="en-card rare-shine">
<span id="en-word"></span>
</div>
<div class="sz-card rare-shine" id="two">
<span id="sz-word">Test</span>
<p class="info-text">Click and hold to reveal English translation.</p>
</div>
<div class="en-card rare-shine" id="two">
<span id="en-word">Test (EN)</span>
</div>
<div class="sz-card rare rare-shine" id="three">
<span id="sz-word">Test</span>
<p class="info-text">Click and hold to reveal English translation.</p>
</div>
<div class="en-card rare rare-shine" id="three">
<span id="en-word">Test (EN)</span>
</div>
<div class="sz-card rare-shine" id="four">
<span id="sz-word">Test</span>
<p class="info-text">Click and hold to reveal English translation.</p>
</div>
<div class="en-card rare-shine" id="four">
<span id="en-word">Test (EN)</span>
</div>
<script src="script.js"></script>
</body>
</html>