-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
41 lines (33 loc) · 1.28 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
40
41
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Morsinator1000</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<script src="scripts/script.js" async></script>
<script src="scripts/textEffect.js" defer></script>
<h1>MORSINATOR1000</h1>
<input type="radio" id="morse" name="language" value="1" />
<label class="label" for="morse">English to Morse Code</label><br />
<input type="radio" id="text" name="language" value="2" />
<label class="label" for="text">Morse Code to English</label><br />
<div id="box">
<!--Mutli-Line Input-->
<div id="box1">
<span class="panel">Input</span>
<textarea id="textInput">Hello World!</textarea>
</div>
<img src="images/smart_display_FILL0_wght400_GRAD0_opsz24.svg" id="button" draggable="false" />
<!--Multi-Line Output-->
<div id="box2">
<span class="panel">Output</span>
<div id="textOutput">.... . .-.. .-.. --- / .-- --- .-. .-.. -.. -.-.--</div>
</div>
</div>
<footer>
Yeshua D'Costa, 2023 - 2024 ©
</footer>
</body>
</html>