-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (21 loc) · 823 Bytes
/
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
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Random Quote Generator</title>
<link rel='stylesheet prefetch' href='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css'>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1>Random Quote Generator</h1>
<br />
<div id="quoteText" class="quoteStyle"></div>
<a id="getQuote" href="#" class="btn btn-custom" role="button">Get New Quote</a>
<br />
<a id="tweetQuote" href="#"; class="btn btn-custom" role="button">Tweet this quote</a>
<br />
<script src='https://code.jquery.com/jquery-2.2.4.min.js'></script>
<script src='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>