-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (30 loc) · 1.22 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Random Quote Generator</title>
<link rel='stylesheet prefetch' href='https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css'>
<link rel='stylesheet prefetch' href='https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.css'>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<div class="">
<div class="row text-center animated fadeInDown ">
<hr>
<div class="col">
<h1 class="display-4 heading">Random Quote Generator</h1>
<hr>
<button class="btn btn-outline-success btn-lg" id="generate-quote" >Get Quote</button>
<button class="btn btn-outline-primary btn-lg" id="tweet" >Tweet</button>
<hr>
<div id="quote-content"></div>
<hr>
</div>
</div>
</div>
</div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>