-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (38 loc) · 1.11 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="/src/styles.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>speak for mora</title>
<script type="module" src="/src/main.ts" defer></script>
</head>
<body>
<article>
<section id="cont_records">
<button id="recordsb">📃</button>
<div id="records" class="none">
<div id="header_records">
<h1>📖</h1>
<button id="closeb">❌</button>
</div>
<ul id="records_list">
</ul>
</div>
</section>
<section id="spell_container">
<textarea name="spell" id="spelli"></textarea>
</section>
<section class="contb">
<div class="contb">
<button id="formatb">⚙️ format</button>
<button id="clearb">🗑️ clear</button>
</div>
<div id="main" class="contb">
<button id="copyb">📋</button>
<button id="listenb">🎙️</button>
</div>
</section>
</article>
</body>
</html>