-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
44 lines (36 loc) · 1.36 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-us">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, inital-scale=1" />
<!-- Bootstrap stylesheet link -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" />
<!-- Custom CSS -->
<link rel="stylesheet" href="css/app.css" />
<!-- Load Javascript files -->
<script type='text/javascript' src="js/nouns.js"></script> <!--Nouns array -->
<script type='text/javascript' src="js/noundescriptors.js"></script> <!-- Adjectives array, renamed due to Adblock Plus blocking adjs.js -->
<script type='text/javascript' src="js/generate.js"></script> <!-- Generate script -->
<title> Sociology idea generator </title>
</head>
<body>
<div class="container">
<div class="page-header text-center">
<h1>Sociology idea generator</h1>
<h2> Click on the button to generate an idea </h2>
</div> <!-- End page-header -->
</div> <!-- End container -->
<div class="container">
<div class="row">
<div class="col-md-4 col-md-offset-4 text-center">
<button id="singlebutton" name="singlebutton" class="btn btn-primary btn-lg btn-gen" type="button" onclick="generate()">
Give me an idea!
</button>
</div>
</div>
</div>
<div class="container text-center">
<h3 id="output"></h3>
</div>
</body>
</html>