-
Notifications
You must be signed in to change notification settings - Fork 17
/
index.html
31 lines (29 loc) · 985 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
27
28
29
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<title>Random Quote Machine</title>
<meta charset="utf-8">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<script src="js/randomQuoteMachine.js"></script>
</head>
<body>
<div class="container">
<div class="bg">
<div id="quote-box">
<div id="text"></div>
<div id="author"></div>
<div id="buttons" class="text-center">
<a id="new-quote" class="btn btn-lg btn-success">New Quote</a>
<a id="tweet-quote" class="btn btn-lg btn-primary" href="#" target="_blank" >Tweet Quote</a>
</div>
</div>
</div>
</div>
<!-- Scripts -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<!-- FREE CODE CAMP TESTING SCRIPT -->
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
</body>
</html>