-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (31 loc) · 1.37 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
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Quote Machine</title>
<link rel='stylesheet prefetch' href='https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css'>
<link rel='stylesheet prefetch' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css'>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="containter-fluid">
<div class="jumbotron">
<h1 class="display-4">Need Inspiration?</h1>
<p class="lead">Below is a simple program that generates quotes from your fellow mankind. </p>
<hr class="my-4">
<blockquote class="blockquote text-center">
<p class="mb-0" id="quote"></p>
<footer class="blockquote-footer" id="quoteauthor"><cite title="Source Title"></cite></footer>
</blockquote>
<p class="lead">
<a class="btn btn-primary btn-lg twitter-share-button" href ="#" id="tweetquote">Tweet Quote</a>
<a class="btn btn-primary btn-lg" id="newquote" href="#" role="button">New Quote</a>
</p>
</div>
</div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js'></script>
<script src='https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/js/bootstrap.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>