-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (48 loc) · 1.84 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
<!DOCTYPE html>
<html>
<head>
<!-- Bootstrap 4 -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
<!-- jQuery 3.2.1 -->
<script src="https://code.jquery.com/jquery-3.2.1.js" integrity="sha256-DZAnKJ/6XZ9si04Hgrsxu/8s717jcIzLy3oi35EouyE="
crossorigin="anonymous">
</script>
<!-- jQuery UI -->
<script src="https://code.jquery.com/ui/1.12.0/jquery-ui.min.js" integrity="sha256-eGE6blurk5sHj+rmkfsGYeKyZx3M4bG+ZlFyA7Kns7E=" crossorigin="anonymous">
</script>
<!-- External javascript and CSS -->
<script type="text/javascript" src="Quote Machine.js" ></script>
<link rel="stylesheet" type="text/css" href="Quote Machine.css">
</head>
<body id="main-body">
<div class="container-fluid">
<div class="row text-center">
<div class="col-md-12">
<h1 class="white-text title">Random Quote Generator</h1>
</div>
</div>
<div class="row quote-div text-center">
<div class="col-md-12">
<blockquote class="blockquote">
<p class="quote white-text" id="quote">Click the button</p>
</blockquote>
<p class="author white-text" id="author">- Xorye</p>
</div>
</div>
</div>
<div class="container-fluid button-div">
<div class="row text-center">
<div class="col-md-12">
<button id="get-quote" class="btn white-text">
Fetch Quote
</button>
<a id="twitter-link" href="https://twitter.com/share">
<button id="twitter-share-button" class="btn white-text">
Tweet
</button>
</a>
</div>
</div>
</div>
</body>
</html>