morse code and ip lookup

This commit is contained in:
zyqunix 2025-04-05 19:49:49 +02:00
parent 82bbc6c0cd
commit 9ed3ee790e
No known key found for this signature in database
GPG key ID: 134A8DEEA83B80E6
8 changed files with 388 additions and 5 deletions

25
morse/index.html Normal file
View file

@ -0,0 +1,25 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Morse Translator</title>
<link rel="shortcut icon" href="https://rimgo.pussthecat.org/RFbdMMB.png" type="image/x-icon">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="card shadow">
<h1>Morse Translator</h1>
<textarea id="textInput" placeholder="Enter text..." rows="5"></textarea>
<button id="translate-to-morse">Translate to Morse</button>
<textarea id="morseOutput" placeholder="Morse Code..." rows="5"></textarea>
<button id="translate-to-text">Translate to Text</button>
<span>
<button id="play-sound">Play Sound</button>
<button id="export">Export Morse</button>
</span>
</div>
<script src="index.js"></script>
</body>
</html>