-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (55 loc) · 1.84 KB
/
Copy pathindex.html
File metadata and controls
58 lines (55 loc) · 1.84 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
57
58
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Morse Code Visualizer</title>
<link
href="https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Bebas+Neue&family=DM+Sans:wght@400;500&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="page">
<div class="workspace">
<div class="main">
<header><h1>MORSE CODE</h1></header>
<div class="tw">
<svg
id="tree"
viewBox="20 18 480 340"
preserveAspectRatio="xMidYMid meet"
></svg>
</div>
</div>
<aside class="side">
<div class="top">
<div class="ld" id="ld">—</div>
<div class="cb"><div class="cs" id="cs"></div></div>
<div class="db">
<span class="dl">MSG</span><span class="dt" id="dt"> </span>
</div>
</div>
<div class="sb"><div class="si" id="si"></div></div>
<button class="kb" id="kb" tabindex="0">
<span id="kl">PRESS & HOLD · SPACE OR CLICK</span>
</button>
<div class="ct">
<button class="cb2" id="bn">NEXT [↵]</button>
<button class="cb2" id="bs">SPACE [/]</button>
<button class="cb2" id="bc">CLEAR [ESC]</button>
</div>
<div class="st" id="st"></div>
<div class="bt">
<span>SHORT = ● dot → right</span>
<span>LONG = ━ dash → left</span>
<span>PAUSE = commit</span>
<span>SOS = ●●● ━━━ ●●●</span>
</div>
</aside>
</div>
</div>
<script src="app.js"></script>
</body>
</html>