-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
109 lines (103 loc) · 3.73 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
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="apple-touch-icon" sizes="180x180" href="./img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./img/favicon-16x16.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.2/css/all.min.css">
<link rel="stylesheet" href="style.css">
<title>Quote Generator</title>
</head>
<body>
<div class="main-container">
<div class="header hide" id="header">
<div class="favorites-tab" id="favorites-tab">
View Favorites <i class="fas fa-heart"></i>
</div>
<div class="home-tab" id="home-tab">
Home
<i class="fas fa-home"></i>
</div>
</div>
<div class="generator-container">
<div class="quote-container" id="quote-container">
<div class="main-quote">
<div class="quote-left"></div>
<div class="quote-middle">
<!-- Quote -->
<div class="quote-text">
<i class="fas fa-quote-left"></i>
<span id="quote"></span>
</div>
<!-- Author -->
<div class="quote-author">
- <span id="author"></span>
</div>
</div>
<div class="quote-right">
<div class="quote-share">
<div class="like-button" id="likeBtn" title="Add to Favorites!">
<i class="fas fa-heart"></i>
</div>
<div class="twitter-button" id="twitter" title="Tweet This!">
<i class="fab fa-twitter"></i>
</div>
<div class="facebook-button" id="facebook" title="Share this on Facebook!">
<i class="fab fa-facebook"></i>
</div>
</div>
</div>
</div>
<!-- Button -->
<div class="button-container">
<button id="new-quote">New Quote</button>
</div>
</div>
<!-- Loader -->
<div class="loader" id="loader"></div>
<!-- Favorite Quotes -->
<div class="favorite-quotes-container hide" id="favorite-quotes-container">
<div class="fav-quotes-header" id="fav-quotes-header">
Your Favorite Quotes
</div>
<div class="main-favorite">
<div class="favorites-table" id="favorites-table">
<table>
<thead>
<tr>
<th>Quote</th>
<th>Author</th>
<th></th>
</tr>
</thead>
<tbody id="table-body">
</tbody>
</table>
</div>
<div class="no-favorites" id="no-favorites">
You have not favorited any quotes!
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer id="footer">
<div class="sabrina-footer-details">
<div class="footer-text">
Developed by Sabrina Powell
</div>
<div class="social-links">
<a href="https://twitter.com/SabrinaInTech" target="_blank"><i class="fab fa-twitter" title="Follow me on Twitter!"></i></a>
<a href="https://www.linkedin.com/in/sabrina-powell-15a43a1b4/" target="_blank"><i class="fab fa-linkedin" title="Connect with me on LinkedIn!"></i></a>
<a href="https://github.com/sabrinapowell" target="_blank"><i class="fab fa-github" title="Check me out on GitHub!"></i></a>
</div>
</div>
</footer>
</div>
<!-- Script -->
<script type="module" src="js/main.js"></script>
</body>
</html>