-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflashcards.html
More file actions
56 lines (49 loc) · 2.09 KB
/
flashcards.html
File metadata and controls
56 lines (49 loc) · 2.09 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
56
<!DOCTYPE html>
<html>
<head>
<title>BSL helpers</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css">
<script type="module" src="RandomWord.js"></script>
</head>
<section class="section">
<div class="container">
<h2 class="title is-2"><a href="fingerspelling.html">Go to Fingerspelling Game</a></h2>
<div class="columns is-flex is-centered">
<div class="column is-full has-text-centered">
<button class="button is-primary is-size-1 is-fullwidth" onclick="setRandomWord()">Randomise</button>
</div>
</div>
<div class="columns is-flex is-centered">
<div class="column is-full is-size-1 has-text-centered">
<h1 id="word"></h1>
</div>
</div>
<div class="columns is-flex is-centered">
<div id="embed" class="column is-full has-text-centered">
<video id="primary_video" class="is-hidden" type="video/mp4" style="width: 600px;" controls></video>
</div>
</div>
<div class="columns is-flex is-centered">
<div id="embed" class="column is-full has-text-centered">
<h2 id="secondary_word"></h2>
<video id="secondary_video" class="is-hidden" type="video/mp4" style="width: 600px;" controls></video>
</div>
</div>
<div class="columns is-flex is-centered">
<div class="column is-full is-size-2 has-text-centered">
<a id="link" target="_blank">Click here for more results</a>
</div>
</div>
<div class="columns is-flex is-centered">
<div class="column is-full is-size-4 has-text-centered">
Current word count: <p id="count"></p>
</div>
</div>
<div class="columns is-flex is-centered">
<a id="link" target="_blank"
href="https://github.com/programmingpixels/bsl-random-word/tree/main/wordlists">Click here to see
the word lists</a>
</div>
</div>
</section>
</html>