-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
23 lines (22 loc) · 973 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/style.css">
<title>Morse Translator</title>
</head>
<body>
<div id="mtitle" class="mtitle">
Morse <span>Translator</span>
<textarea name="txt" id="txt" placeholder="Type some text here!"></textarea>
<button id="encodebtn" class="clk" onclick="encodeText()">Encode</button>
<button id="decodebtn" class="clk" onclick="decodeText()">Decode</button>
<button id="snd" class="sclk" onclick="sndV()"><img id="mic" src="sndV()"></img></button>
<button id="copy" class="sclk" onclick="copyText()"><img src="styles/images/copy.png"></img></button>
</div>
<script src="scripts/api.js"></script>
<script src="scripts/script.js"></script>
</body>
</html>