-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (21 loc) · 1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Random Quote Generator</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Quicksand|Shadows+Into+Light" rel="stylesheet">
</head>
<body>
<div class="container">
<div id="quote">"Wikipedia is the best thing ever. Anyone in the world can write anything they want about any subject. So you know you're getting the best possible information."</div>
<div id="person">- Michael Scott</div>
<button onclick="newQuote()" id="new-quote"><i class="fa fa-refresh fa-lg" aria-hidden="true"></i> Next</button>
<button id="tweet"><i class="fa fa-twitter fa-lg" aria-hidden="true"></i> Tweet</button>
</div>
<script type="text/javascript" src="theOfficeQuotes.js"></script>
<script src="https://use.fontawesome.com/811b3367d2.js"></script>
</body>
</html>