-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (54 loc) · 1.48 KB
/
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!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="shortcut icon"
href="./images/morse-code.png"
type="image/x-icon"
/>
<link rel="stylesheet" href="style.css" />
<title>Morse Code Translator</title>
</head>
<body>
<header>
<div class="image-holder">
<img
class="header-image"
src="./images/morse-code.png"
alt="Morse Code"
/>
</div>
<h1 class="header-title">Morse Code Translator</h1>
</header>
<main>
<section class="links">
<button>
<a
href="https://github.com/VanshSh/Translate-to-Morse-Code-neogcamp"
target="_blank"
>
GitHub Code</a
>
</button>
<button><a href="https://vanshsharma-neogcamp.vercel.app/">Portfolio</a></button>
</section>
<section class="wrapper">
<textarea
class="textarea"
placeholder="Enter your message here..."
cols="10"
rows="5"
id="inputTxt"
></textarea>
<button id="btn" class="translate-button">Translate</button>
<article class="output-result">
<p id="outputTxt"></p>
</article>
</section>
</main>
<script src="app.js" type="text/javascript"></script>
</body>
</html>