-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (48 loc) · 1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quotes On Demand</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
</head>
<body>
<div class="container">
<header>
<h1 id="quoteOnText">Quotes On
<span id="dynamicText">Demand</span>
</h1>
</header>
<main>
<div class="quote-container">
<button id="button">Show Quote</button>
<select id="category">
<option value="all">All</option>
<option value="motivation">Motivation</option>
<option value="humor">Humor</option>
<option value="love">Love</option>
<option value="wisdom">Wisdom</option>
<option value="technology">Technology</option>
<option value="friendship">Friendship</option>
<option value="positivity">Positivity</option>
</select>
<div id="quote-container" class="quote-hidden"></div>
</div>
</main>
<footer>
<div class="social-media">
<a href="https://www.linkedin.com/in/pankajkumarchourasia" target="_blank" rel="noopener noreferrer"><i class="fab fa-linkedin"></i></a>
<a href="https://github.com/Pankaj-Chourasia" target="_blank" rel="noopener noreferrer"><i class="fab fa-github"></i></a>
</div>
<div class="footer-info">
<p>Made with ❤️ by <span class="author">Pankaj Chourasia</span></p>
</div>
<div class="copyright-info">
<p>© 2024 Quotes On Demand. All rights reserved.</p>
</div>
</footer>
</div>
<script src="script.js" defer></script>
</body>
</html>