-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (65 loc) · 2.24 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
<!DOCTYPE html>
<!-- htmlmin:ignore -->
<!--
__ __ ___ _______ __ __ _______ ______ _______ __
| | | || | | || | | || || _ | | || |
| |_| || | |_ _|| |_| || ___|| | || | ___|| |
| || | | | | || |___ | |_||_ | |___ | |
| || | | | | || ___|| __ || ___||__|
| _ || | | | | _ || |___ | | | || |___ __
|__| |__||___| |___| |__| |__||_______||___| |_||_______||__|
!-->
<!--
Copyright (c) Pat Eskinasy
eskinasy.com | @celue
-->
<!-- htmlmin:ignore -->
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Greta Thunberg quotes</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="css/style.css" />
<link href="https://fonts.googleapis.com/css?family=Special+Elite&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css">
</head>
<body>
<div id="container" class="container">
<header>
</header>
<main>
<div id="quote-box">
<div class="quotable-square">
<div class="content">
<div id="text">
</div>
<div id="author" class="author">
</div>
</div>
</div>
<div class="actions">
<button id="new-quote" class="new-quote">Get New Quote</button>
<button class="tweet-quote">
<a id="tweet-quote" href="twitter.com/intent/tweet" target="_blank"><i
class="fab fa-twitter"></i>Tweet Quote</a>
</button>
</div>
</div>
</main>
</div>
<footer>
<ul class="footer-options">
<li class="footer-link"><a href="https://www.morsewall.com/support/" class="footer-linktext">Support me</a>
</li>
<li class="footer-link"><a href="https://www.morsewall.com/legal/" class="footer-linktext">Legal</a></li>
<li class="footer-link"><a href="https://www.morsewall.com/contact/" class="footer-linktext">Contact</a>
</li>
</ul>
<span>© Developed by Pat Eskinasy. All Rights Reserved.</span>
</footer>
<script src="js/script.js"></script>
<!-- The below JS is for the widget by makerwidget -->
<script src="js/makerwidget.js"></script>
</body>
</html>