-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (22 loc) · 849 Bytes
/
Copy pathindex.html
File metadata and controls
27 lines (22 loc) · 849 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Morse Code Translator</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<canvas id="background"></canvas>
<div class="container">
<h1>Morse Code Translator</h1>
<div class="toggle-container">
<button class="toggle-btn active" id="normalTextToggle" onclick="toggleInput('normal')">Normal Text</button>
<button class="toggle-btn" id="morseCodeToggle" onclick="toggleInput('morse')">Morse Code</button>
</div>
<textarea id="textInput" placeholder="Enter normal text..."></textarea><br>
<textarea id="morseOutput" placeholder="Morse code appears here..."></textarea><br>
<button onclick="encodeDecode()">Encode/Decode</button>
</div>
<script src="script.js"></script>
</body>
</html>