mirror of
https://github.com/zyqunix/tools.git
synced 2025-07-05 22:10:31 +02:00
25 lines
848 B
HTML
25 lines
848 B
HTML
<!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="cards 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>
|