-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·97 lines (75 loc) · 3.72 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<!-- META INFORMATION -->
<meta charset="UTF-8">
<meta name="description" content="Quotie">
<meta name="keywords" content="HTML,CSS,JavaScript, Quotes, API">
<meta name="author" content="phaedonv">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!--social preview-->
<meta property="og:image" content="images/quotie.png">
<meta property='og:title' content='QUOTIE'/>
<meta property='og:description' content='Find Your Best Quotes'/>
<meta property='og:url' content='https://phaedonv.github.io/quotie/'/>
<!-- END OF META INFORMATION -->
<!-- Particle JS -->
<script src="http://www.jsdelivr.com/#!particles.js"></script>
<title>Quotie</title>
<!-- BOOTSTRAP -->
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9gVQ4dYFwwWSjIDZnLEWnxCjeSWFphJiwGPXr1jddIhOegiu1FwO5qRGvFXOdJZ4"
crossorigin="anonymous">
<!-- FONTAWESOME -->
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN"
crossorigin="anonymous">
<!-- GOOGLE FONT -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Righteous&display=swap" rel="stylesheet">
<!-- CUSTOM STYLESHEET -->
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<!-- Particles JS -->
<div id="particles-js">
<script type="text/javascript" charset="UTF-8" src="particles.js"></script>
<script type="text/javascript" charset="UTF-8" src="app.js"></script>
<div class="container" id="quotebox">
<div class="row">
<div class="col-md-12 title">
<h1>Quotie</h1>
<h4><i class="fa fa-quote-left"></i> find the quote that suits you the best <i class="fa fa-quote-right"></i></h4>
</div>
<div class="col-md-12 quoteArea">
<p id="randomQuote"></p>
</div>
<div class="col-md-12 buttons text-center">
<a href="#" class="btn btn-info" target="_blank" id="ShareMe" role="button">
<i class="fa fa-facebook"></i> Share Me</a>
<a href="#" class="btn btn-info" target="_blank" id="tweetMe" role="button">
<i class="fa fa-twitter"></i> Tweet Me</a>
<a href="#" class="btn btn-info" id="newQuote" role="button">
<i class="fa fa-quote-left"></i> New Quote</a>
</div>
<div class="col-md-12 creator">Made with <i class="fa fa-code" style="color:#c62a88;"> </i> by
<a href="#" target="_blank">earthlings.. </a><i class="fa fa-hand-spock-o" style="color:#54e346;"></i>.
</div>
</div>
</div>
</div>
<!-- JQUERY CDN -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- BOOTSTRAP JAVASCRIPT -->
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js" integrity="sha384-uefMccjFJAIv6A+rW+L4AHf99KvxDjWSu1z9VI8SKNVmz4sk7buKt/6v9KI65qnm"
crossorigin="anonymous"></script>
<!-- CUSTOM JAVASCRIPT -->
<script src="js/scripts.js"></script>
<!--
<script type="text/javascript" charset="UTF-8">
particlesJS.load("particles-js","particles.json", function(){
console.log(particles.json loaded..);
});
</script>
-->
</body>
</html>