-
Notifications
You must be signed in to change notification settings - Fork 0
/
quoteGenerator.html
62 lines (54 loc) · 2.5 KB
/
quoteGenerator.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html>
<head>
<title>Roger Perez | Quote Generator </title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Roger Perez">
<meta name="description" content="Roger Perez, Software Engineer, Full Stack Developer">
<meta name="keywords" content="Ruby, React, Rails, JavaScript, TDD, ">
<!--Link to add icon on top of tab-->
<link rel="icon" href="https://bit.ly/2IIA3Ek"><!--Geometric panda-->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<!--custom stylesheets for portfolio-->
<link rel="stylesheet" type="text/css" href="css/quoteStyles.css">
<!--Google Fonts-->
<link href="https://fonts.googleapis.com/css?family=Courgette|Lobster|Pacifico|Rozha+One" rel="stylesheet">
</head>
<body id="body" class="cssColor">
<div >
</div>
<section class="container">
<div class="">
<div id="quoteBox" class="quote-box col-md-3 col-md-offset-3">
<div id="enclosedBox" class="">
<div id="text" class="quote-text">
<!-- <i class="fa fa-quote-left"> </i> -->
<p id="quotePara" class="">Never give up on something that you can’t go a day without thinking about.</p>
<!-- <i id="endQuote" class="fa fa-quote-right"> </i> -->
</div>
<div class="quote-author">
- <span id="author" class="">Winston Churchill</span>
</div>
<div class="button-link">
<a class="button tweet-quote" id="tweet-quote" title="Tweet this quote!" target="_blank">
<i class="fa fa-twitter fa-2x"></i>
</a>
<button id="getQuote"class="btn btn-primary">Get Quote</button>
</div>
</div>
</div>
</div>
</section>
<!--footer section begins -->
<footer>Copyright 2017 by Roger Perez.</footer>
</body>
<script src="javascript/quoteGenerator.js"></script>
<script src="JSON/quotes-1.json"></script>
<!-- Tweet Button JS -->
<script src="javascript/tweetButton.js"></script>