-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (33 loc) · 1.2 KB
/
index.html
File metadata and controls
42 lines (33 loc) · 1.2 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
41
42
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Random Quote Generator API</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous"/>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<body class="coloring">
<div class="row midbox">
<div class="col-md-4 quotebox">
<h1 class="quote-title">Random Quote Machine</h1>
<p id="quote"></p>
<p id="author"></p>
<div class="row">
<div class="col-md-4">
<a id="tweetquote" href="#" target="_blank" class="btn btn-default pushit">Tweet</a>
</div>
<div class="col-md-4 pull-right">
<button id="getQuote" class="btn btn-default pushit">New Quote
</button>
</div>
</div>
</div>
</div>
</body>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0/jquery.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery.ui-contextmenu/1.11.0/jquery.ui-contextmenu.min.js'></script>
<script src='http://platform.twitter.com/widgets.js'></script>
<script src="js/index.js"></script>
</body>
</html>