-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (27 loc) · 943 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
24
25
26
27
28
29
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shakespearean Tongue</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Langar&display=swap" rel="stylesheet">
</head>
<body>
<div class="main-div">
<h1>Shakespearean Translator</h1>
<p>
Here you can be your Shakespearean version of yourself 👇.
</p>
</div>
<div class="io">
<textarea id="input" placeholder="Hey! type your paragraph or phrase"></textarea>
</div>
<div class="io"><button id="tran">Translate</button></div>
<div class="io">
<textarea id="output" placeholder="Shakespearean-tongue"></textarea>
</div>
<script src="app.js"></script>
</body>
</html>