-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (68 loc) · 2.69 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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js">
<!--<![endif]-->
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Seasonal Quotation Generator</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous"
/>
<link href="https://fonts.googleapis.com/css?family=Dancing+Script&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!--[if lt IE 7]>
<p class="browsehappy">
You are using an <strong>outdated</strong> browser. Please
<a href="#">upgrade your browser</a> to improve your experience.
</p>
<![endif]-->
<div class="container d-flex flex-column justify-content-center">
<h1 class="py-5 text-center">Seasonal Quote Generator</h1>
<div class="row">
<form id="form" class="col col-6 offset-3">
<div class="row">
<div class="form-group col-4 mb-0">
<select name="" id="category" class="form-control">
<option value="autumn">Autumn</option>
<option value="winter">Winter</option>
</select>
</div>
<div class="form-group col-4 mb-0">
<select class="form-control" id="numberOfQuotes">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
</div>
<div class="col-4 d-flex align-items-center">
<button id="submitBtn" class="btn btn-primary py-2 px-5">
Submit
</button>
</div>
</div>
</form>
</div>
<div class="row d-flex justify-content-center">
<ul id="quoteDisplay" class="py-4"></ul>
</div>
<div class="row d-flex justify-content-center" id="reset"></div>
</div>
<!-- Choose 1 script and comment out the others so they can't clash -->
<script src="v3_final_product_frontend.js"></script>
<!-- <script src="v2_customised_quotes_console.js"></script> -->
<!-- <script src="v1_random_quotes_console.js"></script> -->
</body>
</html>