forked from katiaiva/translator-application-main
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (27 loc) Β· 1.03 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
<!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">
<title>Pirate</title>
<link href="styles.css" rel="stylesheet">
</head>
<body>
<h1>Pirate Speak</h1>
<textarea
placeholder="Enter your sentence in English & we will convert it into Pirate language"
id="txt-input"
></textarea>
<div id="container">
<button id="btn-translate">Click to Translate</button>
</div>
<div style="font-size: x-large ; text-align: center; margin: 2rem;">Output will come here π</div>
<div id="output"></div>
<script src="App.js" type="text/javascript"></script>
<footer>
<h2>About</h2>
<p>Convert from English to Pirate speak. Shiver me timbers! I be needin' t' send 'em all to Davy Jones' locker. Arrrrr! Anyway go ahead and translate and have some fun!</p>
</footer>
</body>
</html>