-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmenu.html
36 lines (27 loc) · 1.31 KB
/
menu.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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Menu</title>
<link rel="stylesheet" href="css/speech.css">
<link rel="stylesheet" href="css/game.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/paper.js/0.12.2/paper-full.min.js" integrity="sha256-xT9jNx8tzepeeLwMeN985td1KYlkEOZJ/ReF9XMLoMU=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/PapaParse/5.1.0/papaparse.min.js" integrity="sha256-Fh801SO9gqegfUdkDxyzXzIUPWzO/Vatqj8uN+5xcL4=" crossorigin="anonymous"></script>
<!-- <script src="./node_modules/paper/dist/paper-full.min.js"></script>
<script src="./node_modules/papaparse/papaparse.min.js"></script> -->
<script src="js/menu.js" canvas="myCanvas"></script>
</head>
<body>
<canvas id="myCanvas" resize></canvas>
<div class="speech" onclick="document.getElementById('b').classList.remove('hidden')">
<p class="bubble hidden" id="b">
Here you can see all the 'mother' letters in our
alphabet, called Fidäl (ፊደል), or abugida (አቡጊዳ).
Try moving your finger over the letters to see it in
latin phonetic 👆
or tap any one to continue.
</p>
</div>
</body>
</html>