-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
33 lines (32 loc) · 1.3 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
<!DOCTYPE html>
<html>
<head>
<title>Random Quote Page</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css">
<link rel="stylesheet" href="./styles.css"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
</head>
<body>
</body>
<div id="quotes-box" class="container">
<div id="quote-text" class="container">
<p id="quote"></p>
<cite></cite>
</div>
<div id="button-container">
<a id="tweet-button" type="button" class="btn btn-default">
<i class="fa fa-twitter"></i>
</a>
<button id="new-quote" class="btn btn-default">New Quote</button>
</div>
</div>
<footer class="text-center">
Quotes from <a href="http://quotes.stormconsultancy.co.uk/">stormconsultancy.co.uk</a>.
</footer>
<script src="scripts.js"></script>
</body>
</html>