-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (37 loc) · 1.38 KB
/
index.html
File metadata and controls
42 lines (37 loc) · 1.38 KB
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
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Ephesis&family=Orbitron:wght@400..900&display=swap" rel="stylesheet">
<title>Morse Code</title>
</head>
<body>
<h1>Morse Code Encoder</h1>
<h2>Enter your message in the box below</h2>
<div class="container">
<div>
<form>
<textarea id="message" maxlength="50" minlength="1" placeholder="Enter a message..."></textarea>
</form>
</div>
<div id="buttons">
<button onclick="translateToMorse()">Translate</button>
<button onclick="playCode()">Play It ►</button>
</div>
<div id="parameters">
<label>Speed</label>
<input type="number" id="speed" name="speed" min="25" max="500" value="50">
</div>
<h2>Morse Code of your message</h2>
<div class="box">
<p id="output"></p>
</div>
<p id="signature">©Made by Muveyt</p>
</div>
<script src="./index.js"></script>
</body>
</html>