-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (67 loc) · 2.71 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
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Morse Code Translator</title>
<link rel="stylesheet" href="./css/style.css">
<!--Favicon-->
<link rel="shortcut icon" href="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/microsoft/209/hacker-cat_1f431-200d-1f4bb.png" type="image/x-icon">
<script src="https://kit.fontawesome.com/8f8c282b5e.js" crossorigin="anonymous"></script>
</head>
<body>
<nav class="nav navbar">
<div class="brand"><a>Morse Code Translator</a></div>
<div>
<ul class="nav-items">
<li>
<a href="#ml" class="nav active-link">Morse Slang</a>
</li>
<li>
<a href="#about">About App</a>
</li>
</ul>
</div>
</nav>
<header>
<h1 class="heading">Let's talk using Morse Code!!!!!</h1>
<img class="hero" src="" alt="">
</header>
<main>
<section id="ml">
<textarea id="tt-input" placeholder="Hello! Write you message here which you want to convert to morse."></textarea>
<br/>
<button id="submit-btn" class="btn-primary">Get Translation!</button>
<button id="reset-btn" class="btn-primary">Reset</button>
<div>Output will come here👇👇</div>
<div id="tt-output"></div>
</section>
<section id="about">
<h1 class="about-heading">
About
</h1>
<p>
This app converts English to Morse Code. Morse code is a method used in telecommunication to encode text characters as standardized sequences of two different signal durations, called dots and dashes, or dits and dahs.
</p>
</section>
</main>
<footer>
<ul>
<li>
<a href="https://www.facebook.com/anush.codergirl/"><i class="fab fa-facebook"></i></a>
</li>
<li>
<a href="https://www.instagram.com/anush.codergirl/"><i class="fab fa-instagram"></i></a>
</li>
<li>
<a href="https://twitter.com/AnushCodergirl"><i class="fab fa-twitter"></i></a>
</li>
<li>
<a href="https://www.linkedin.com/in/anushka-raj/"><i class="fab fa-linkedin"></i></a>
</li>
</ul>
<p><a class="grey-text" href="https://github.com/Anushka-codergirl"> © 2021 Copyright | Made with <span class="heart"><i class="fas fa-heart"></i></span> by Anushka Raj</p>
</footer>
<script src="./js/app.js" type="text/javascript"></script>
</body>
</html>