-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (32 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Doge Tells Wooof !! | Sai Tejas A R's Projects</title>
<link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16.png">
<link rel="manifest" href="/images/site.webmanifest">
<link href="style.css" rel="stylesheet">
</head>
<body>
<nav>
<div style="font-size: 2rem; padding: 1rem;">
Doge Tells Wooof !!
</div>
</nav>
<main>
<textarea id="translate-input"
placeholder="Put your message here which you want to convert to woof language"></textarea>
<button id="translate-button"> Translate To Woof 🐶 </button>
<div class="">Translation will come here 👇</div>
<div id="translate-output" style="padding: 1rem; font-size: large;"></div>
</main>
<footer>
<div style="font-size: large">Sai Tejas | Projects</div>
<i ></i>
</footer>
<script src="app.js" type="text/javascript"> </script>
</body>
</html>