-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (73 loc) · 2.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Your website description goes here" />
<meta
name="keywords"
content="Quotes, Quotes App, Random Quotes, Motivational quotes,Inspirational sayings, Success quotes, Positive affirmations, Leadership quotes,Self-improvement tips, Encouraging words,Happiness quotes,Goal setting advice,Personal growth quotes, Determination quotes, Ambition quotes, Empowerment quotes, Resilience quotes, Mindfulness quotes, Confidence boosters, Life coaching quotes, Positivity quotes, Wisdom sayings, Inspirational thoughts"
/>
<meta name="author" content="Author Name" />
<title>Super Quotes</title>
<link rel="stylesheet" href="styles.css" />
<link
rel="shortcut icon"
href="./assets/shortcut-icon.png"
type="image/x-icon"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body>
<div class="quote-container" id="quote-container">
<!-- Quote -->
<div class="quote-text">
<i class="fa-solid fa-quote-left"></i>
<span id="quote">
<!--The Quote Text will appear here-->
</span>
<i class="fa-solid fa-quote-right"></i>
</div>
<!-- Author -->
<div class="quote-author">
<span id="author">
<!--The Author name will appear here-->
</span>
</div>
<!-- Buttons -->
<div class="button-container">
<div class="share-buttons">
<button type="button" class="btn" id="twitter" title="Tweet This!">
<i class="fa-brands fa-x-twitter"></i>
</button>
<button
type="button"
class="btn"
id="whatsapp"
title="Facebook Post!"
>
<i class="fa-regular fa-copy fa-l"></i>
<i class="fa-solid fa-check fa-l"></i>
</button>
</div>
<button
type="button"
class="btn"
id="new-quote"
title="Generate New Quote"
>
New Quote
</button>
</div>
</div>
<span class="loader" id="loader"></span>
<script src="./quotes.js"></script>
<script src="./script.js"></script>
</body>
</html>