-
Notifications
You must be signed in to change notification settings - Fork 0
/
randomQuote.html
34 lines (28 loc) · 1.05 KB
/
randomQuote.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
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<meta name="viewport" content="width=device-width,height=device-height,initial-scale=1.0"/>
<link href="randomQuoteCSS.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Courgette" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Cabin+Sketch" rel="stylesheet">
</head>
<body>
<div class="container-fluid">
<div class = "centeredButtons">
<h1>Random Quote Generator</h1>
</div>
<div class="box">
<p id="quotes">
</p>
</div>
<div class="centeredButtons">
<a href="" target="_blank" id="tweet-it"><input type="button" id="tweet-btn" class="buttons" value="Twitter"></input></a>
<input type="button" class="buttons" id="next-quote" value="Next Quote" onclick="changeColor();"></input>
</div>
</div> <!-- closes container-fluid -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="randomQuoteJS.js">
</script>
</body>
</html>