-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (26 loc) · 1.08 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
<!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.5/css/bootstrap.min.css'>
<link rel='stylesheet prefetch' href='https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.2.3/animate.min.css'>
<link rel='stylesheet prefetch' href='http://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css'>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<body>
<h1 class="text-center">Generate a random Quote!</h1>
<div id="quote-box">
<div id="quote"></div>
<div id="author"></div>
</div>
<div class="tweety">
<a href="#" title="Share" target="_blank" class="btn btn-primary" id="twitter"><i class="fa fa-twitter"></i> Tweet</a></div>
<button class="btn btn-primary" id="randq">Quote me</button>
</div>
</body>
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>