-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (25 loc) · 1.36 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
<!DOCTYPE html>
<meta charset="utf-8"/>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lobster">
<link rel="stylesheet" href="css/style.css">
<title>The Office Random Quote Generator</title>
<div class="container">
<div id="section-title">
<h1>The Office Random Quote Generator</h1>
</div>
<div id="section-desc">
<p>Click on the quote to generate a random quote from the memorable TV show <a href="http://www.nbc.com/the-office" target="_blank">The Office</a>. The quote can also be tweeted out to your followers. Enjoy!
</div>
<div id="section-quote">
<span id="quote"></span><span id="tweet-quote"></span>
</div>
<div id="section-about">
<a href="https://github.com/coymeetsworld/the-office-random-quote-generator" target="_blank">Check out the source code on GitHub!</a>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
<script src="https://platform.twitter.com/widgets.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<script src="js/randomquote.js"></script>