mirror of
https://github.com/zyqunix/tools.git
synced 2025-07-06 06:20:30 +02:00
morse code and ip lookup
This commit is contained in:
parent
82bbc6c0cd
commit
9ed3ee790e
8 changed files with 388 additions and 5 deletions
25
morse/index.html
Normal file
25
morse/index.html
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue