-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (37 loc) · 1.06 KB
/
Copy pathindex.html
File metadata and controls
37 lines (37 loc) · 1.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<script
type="text/javascript"
src="https://rawgithub.com/hiddentao/google-tts/master/google-tts.min.js"
></script>
<script type="importmap" defer>
{
"imports": {
"@google/generative-ai": "https://esm.run/@google/generative-ai"
}
}
</script>
<script src="index.js" defer type="module"></script>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1"
/>
<link rel="stylesheet" type="text/css" href="styles.css" />
<title>morse code practice</title>
</head>
<body>
<div id="buttons">
<button id="DOT">DOT</button>
<button id="LINE">Line</button>
<button id="SPACE">SPACE</button>
<button id="DONE">DONE</button>
<button id="NEXT">NEXT</button>
<button id="AUDIO">AUDIO</button>
<button id="REPEAT">REPEAT</button>
</div>
<h1 id="text"></h1>
<h2 id="currentCode"></h2>
</body>
</html>