forked from tris-rivers/random-lyrics-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (39 loc) · 1.54 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
34
35
36
37
38
39
40
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<link href="https://fonts.googleapis.com/css?family=Questrial" rel="stylesheet" type="text/css">
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script type='text/javascript' src='script.js'></script>
<link rel="stylesheet" type="text/css" href="style.css">
<script type='text/javascript' src='script.js'></script>
<title>Random Quote Machine</title>
</head>
<body>
<div class="container-fluid">
<center>
<h1>Random Lyrics Generator</h1>
</center>
<div class="box">
<div class="box-margin"> <!-- whole textbox-->
<div id="displayQuote" class="quote-font animated fadeIn">
<!--for the quote--> Click the "Next" button to start generating~ <!--quotes should land here-->
</div>
<div id="twitter-share-button" style="float: left"> <!--TWEET-->
<a href="https://twitter.com/intent/tweet"
class="twitter-share-button"
data-text=""
data-size="large" data-hashtags="RandomQuoteMachine"
data-show-count="false">Tweet</a>
<!-- <script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>-->
</div>
<div>
<!--NEW QUOTE-->
<button id="quote" class="button button1" onclick="newQuote()" type="new-quote">Next</button>
</div>
</div><!-- /whole textbox-->
</div>
</div>
</body>
</html>