-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (24 loc) · 1.01 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
<html>
<head>
<title>Jerb Title Generator</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<link href="resources/generator_styles.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<script src="resources/generator.js"></script>
</head>
<body>
<div class="container">
<div class="jumbotron">
<h2>Jerb Title Generator</h2>
<p class="lead">Press the button below to generate your jerb title.</p>
<p><a class="btn btn-lg btn-success" href="#" role="button" onclick="jerbMe();">Jerb Me</a></p>
</div>
</div>
<div class="container">
<div class="jumbotron">
<h1 id="jerb"></h1>
</div>
</div>
</body>
</html>