-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (77 loc) · 4.51 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<title>Fantasy Insult Generator</title>
<meta name="description" content="A simple tool to create random insults for your favorite (or least favorite) fantasy races.">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat:400,400i,700,700i,600,600i">
<link rel="stylesheet" href="assets/fonts/material-icons.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/baguettebox.js/1.10.0/baguetteBox.min.css">
<link rel="stylesheet" href="assets/css/smoothproducts.css">
<link rel="apple-touch-icon" sizes="180x180" href="assets/img/apple-touch-icon.png"/>
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/img/favicon-16x16.png">
<link rel="shortcut icon" type="image/png" href="assets/img/favicon-16x16.png"/>
<link rel="manifest" href="site.webmanifest">
</head>
<body>
<main class="page contact-us-page">
<section class="clean-block clean-form dark" style="background: url("assets/img/tophat-ogre.jpg") left / auto no-repeat, #d1d1d1;height: 600px;">
<div class="container">
<div class="block-heading"></div>
<form>
<h2 class="text-info" style="text-align: center;">Fantasy Insult Maker</h2>
<p id="welcome-text" style="text-align: center;"></p>
<div class="form-row" style="margin: 10px;">
<div class="col">
<div class="dropdown"><button class="btn btn-primary dropdown-toggle" data-toggle="dropdown" aria-expanded="false" id="race-dropdown-button" type="button" style="width: 100%;">Generic Insult</button>
<div class="dropdown-menu" id="race-menu" style="max-height: 200px;"><a class="dropdown-item" href="#" onclick="setInsultRace('Generic Insult')">Generic Insult</a></div>
</div>
</div>
</div>
<div class="form-row">
<div class="col-xl-10 offset-xl-0" style="max-width: 80%;"><textarea class="form-control" id="insult-text"></textarea></div>
<div class="col" style="max-width: 10%;"><button class="btn btn-primary" type="button" style="width: 38px;height: 38px;padding: 6px 6px;" onclick="generateInsult()"><i class="material-icons">shuffle</i></button></div>
<div class="col" style="max-width: 10%;"><button class="btn btn-primary" type="button" style="width: 38px;height: 38px;padding: 6px 6px;" onclick="copyInsult()"><i class="material-icons">content_copy</i></button></div>
</div>
<div></div>
</form>
</div>
</section>
</main>
<footer class="page-footer dark">
<div class="container">
<div class="row">
<div class="col-sm-3">
<h5>Support</h5>
<ul>
<li><a href="#">There is none</a></li>
<li><a href="#">Pray to the deep old ones</a></li>
<li><a href="#">Maybe they'll eat you first</a></li>
</ul>
</div>
<div class="col-sm-3">
<h5>Contribute</h5>
<ul>
<li><a href="#"></a></li>
<li><a href="https://github.com/Felger/insult-maker">Github Repository</a></li>
<li><a href="https://forms.gle/YBbq8C9GtMi9FNxw8">Submit Insults via Form</a></li>
</ul>
</div>
</div>
</div>
<div class="footer-copyright">
<p>License - Apache 2.0</p>
</div>
</footer>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/baguettebox.js/1.10.0/baguetteBox.min.js"></script>
<script src="assets/js/smoothproducts.min.js"></script>
<script src="assets/js/theme.js"></script>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="assets/js/insultgen-1.0.2.js"></script>
</body>
</html>