-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (76 loc) · 3.47 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Bombasticator</title>
<meta name="description" content="A translator from normal human speech to confusingly bombastic speech">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta property="og:title" content="Bombasticator" />
<meta property="og:type" content="website" />
<meta property="og:url" content="" />
<meta property="og:description" content="A translator from normal human speech to confusingly bombastic speech" />
<meta property="og:image" content="" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous" />
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/main.css" />
<link rel="stylesheet" href="fontawesome-5.14.0/css/all.min.css" />
<link rel="shortcut icon" href="favicon.ico" />
<meta name="theme-color" content="#fafafa" />
</head>
<body>
<nav class="navbar fixed-top navbar-light bg-light">
<span class="navbar-brand">
Bombasticator
</span>
</nav>
<div class="container">
<div class="alert alert-info">
<p>
<strong>A translator from normal human speech to confusingly bombastic gibberish</strong>
</p>
<p>
Thanks to <a href="https://words.bighugelabs.com/">Big Huge Thesaurus</a> for providing a free synonym API.
This can only translate 500 words per day, so please take a break for a day if you hit the usage limit.
</p>
</div>
<div class="row">
<section class="col form-floating">
<h1>
<label for="input">
Normal human speech
</label>
</h1>
<form id="form">
<textarea id="input" class="form-control"></textarea>
<div id="btn-container">
<button type="submit" class="btn btn-primary" id="button">
Translate
</button>
</div>
</form>
</section>
<section class="col form-floating">
<h1>
<label for="output">
Bombasticated
</label>
</h1>
<textarea id="output" class="form-control" disabled></textarea>
</section>
</div>
</div>
<footer class="container">
<a href="https://phantomwatson.com">PhantomWatson.com</a>
</footer>
<script src="js/vendor/modernizr-3.11.2.min.js"></script>
<script src="js/main.js"></script>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
<script>
document.addEventListener("DOMContentLoaded", function () {
new Translator();
});
</script>
</body>
</html>