-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (36 loc) · 1.91 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
<!--Random Quote Generator index.html-->
<!DOCTYPE html>
<html lang="en">
<head>
<title>JDRey's StarWars RQG</title>
<link href="https://fonts.googleapis.com/css?family=Exo" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" href="main.css">
</head>
<body>
<!--main content heading START-->
<div class="container" id="siteSplash">
<img id="starWarsLogo" src="http://vignette1.wikia.nocookie.net/kane-slodki-i-szymek/images/8/8b/Starwars-logo.png/revision/latest?cb=20150512154644&path-prefix=pl">
<h1>Random Quote Generator</h1>
<h3>This is a twist on a project of mine from <a href="http://www.freecodecamp.com/" target="_blank">freecodecamp's</a> front end development course.</h3>
<p>(Feel free to press the "Generate Quote" button to get started!)</p>
</div>
<!--main content heading END-->
<!--quote space START-->
<div class="container well" id="quoteSpace">
<h4 id="quoteQuote"></h4>
<h4 id="quotePerson"></h4>
</div>
<div class="container" id="quoteBtn"> <!--button that generates random quote-->
<a class="btn btn-danger btn-lg" id="quoteBtnActual" href="#">Generate Quote</a>
</div>
<!--quote space END-->
<!--footer START-->
<footer><a class="btn btn-primary btn-sm" id="quoteTweet" href="#"><i class="fa fa-twitter fa-1x"></i> Tweet This Quote! (Not Working, Yet)</a></footer>
<!--script placement START-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js" type="text/javascript"></script>
<script src="quotes.js" type="text/javascript"></script>
<!--script placement END-->
</body>
</html>