-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuoteGenerator.html
More file actions
40 lines (40 loc) · 1.26 KB
/
QuoteGenerator.html
File metadata and controls
40 lines (40 loc) · 1.26 KB
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
<!doctype html>
<html>
<head>
<title>Quote Generator</title>
<meta charset="utf-8">
<meta name="keywords" content="quote generator, quotes">
<meta name="description" content="A quote generator">
<meta name="viewport" content="width=device-width, initial scale=1.0">
<link href="styles.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="QuoteGenerator.js"> </script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
</head>
<body>
<div class="container-fluid">
<div class="jumbotron text-center">
<h1>Dani's Quote Generator</h1>
</div>
<div class="row text-center">
<div class="col-lg-12 message">
<p>Your quote will appear here.</p>
</div>
</div>
<div class="row text-center">
<div class="col-lg-12">
<button id="getQuote">Get Quote</button>
</div>
</div>
</div>
<footer>
<div class="container-fluid">
<div class="row text-center">
<div class="col-lg-12">
<p>Made, with coffee, by Dani V Cupples</p>
</div>
</div>
</div>
</footer>
</body>
</html>