From f28c7a3be0fa7d906e5fbb41d597213d335b07a3 Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Mon, 3 Mar 2025 13:42:57 +0100 Subject: Add morse chart --- chart.html | 351 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ index.html | 19 ++++ 2 files changed, 370 insertions(+) create mode 100644 chart.html diff --git a/chart.html b/chart.html new file mode 100644 index 0000000..1000e71 --- /dev/null +++ b/chart.html @@ -0,0 +1,351 @@ + + + + + + + Morse Code Chart - Morse Hero + + + + + + + + + + + + + + + +
+

Morse Hero

+

Morse Code Chart

+ +
+

Letters

+
+
+
A
+
·−
+
+
+
B
+
−···
+
+
+
C
+
−·−·
+
+
+
D
+
−··
+
+
+
E
+
·
+
+
+
F
+
··−·
+
+
+
G
+
−−·
+
+
+
H
+
····
+
+
+
I
+
··
+
+
+
J
+
·−−−
+
+
+
K
+
−·−
+
+
+
L
+
·−··
+
+
+
M
+
−−
+
+
+
N
+
−·
+
+
+
O
+
−−−
+
+
+
P
+
·−−·
+
+
+
Q
+
−−·−
+
+
+
R
+
·−·
+
+
+
S
+
···
+
+
+
T
+
+
+
+
U
+
··−
+
+
+
V
+
···−
+
+
+
W
+
·−−
+
+
+
X
+
−··−
+
+
+
Y
+
−·−−
+
+
+
Z
+
−−··
+
+
+
+ +
+

Numbers

+
+
+
1
+
·−−−−
+
+
+
2
+
··−−−
+
+
+
3
+
···−−
+
+
+
4
+
····−
+
+
+
5
+
·····
+
+
+
6
+
−····
+
+
+
7
+
−−···
+
+
+
8
+
−−−··
+
+
+
9
+
−−−−·
+
+
+
0
+
−−−−−
+
+
+
+ +
+

Special Characters

+
+
+
=
+
−···−
+
+
+
.
+
·−·−·−
+
+
+
,
+
−−··−−
+
+
+
/
+
−··−·
+
+
+
?
+
··−−··
+
+
+
+ + + + +
+ + + \ No newline at end of file diff --git a/index.html b/index.html index 983b33e..3b1c8fc 100644 --- a/index.html +++ b/index.html @@ -379,6 +379,22 @@ vertical-align: middle; cursor: pointer; } + + .chart-link { + margin-top: 20px; + font-size: 18px; + } + + .chart-link a { + color: #3498db; + text-decoration: none; + transition: color 0.3s; + } + + .chart-link a:hover { + color: #f39c12; + text-decoration: underline; + } @@ -389,6 +405,9 @@

Learn Morse code the fun way! Listen to the sound and pick the correct character.

+
-- cgit v1.3.1