-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
39 lines (34 loc) · 1.41 KB
/
main.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
<DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Random Quote Machine</title>
<!--CSS FILES-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="main.css">
</head>
<body>
<div class="container text-center">
<div class="row col-md-12">
<h1>Random Quote Machine</h1>
<h3>WARNING: These quotes may inspire you</h3>
<hr>
</div>
<div class="col-md-8 col-md-offset-2">
<div class="quote-box">
<p id="quote"></p>
<p id="author"></p>
</div>
<ul class="list-inline">
<li><button id="new-quote" class="btn btn-default btn-lg"><i class="fa fa-quote-left fa-fw"></i>New Quote</button></li>
<li><button id="tweet-quote" class="btn btn-default btn-lg"><i class="fa fa-twitter fa-fw"></i>Tweet Quote</button></li>
</ul>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.1.1.min.js"
integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
crossorigin="anonymous"></script>
<script type="text/javascript" src="main.js"></script>
</body>
</html>