-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (56 loc) · 3.4 KB
/
Copy pathindex.html
File metadata and controls
61 lines (56 loc) · 3.4 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Professor Quote Machine 💀</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
</head>
<body class="flex flex-col items-center justify-center min-h-screen p-4">
<!-- Disclaimer Modal -->
<div id="disclaimer-modal" class="fixed inset-0 bg-black bg-opacity-75 flex items-center justify-center z-50">
<div class="bg-gray-900 p-8 rounded-2xl max-w-2xl mx-4 border border-gray-800">
<h2 class="text-2xl font-bold text-white mb-4">⚠️ Disclaimer</h2>
<p class="text-gray-300 mb-6">
Welcome to the Professor Quote Machine!
<br><br>
• These quotes are completely made up
<br>
• These are not real quotes from anyone
<br>
• This is purely for entertainment
<br><br>
By clicking "I Understand", you acknowledge these terms.
</p>
<button id="accept-disclaimer" class="w-full bg-gradient-to-r from-purple-600 to-blue-500 hover:from-purple-700 hover:to-blue-600 text-white font-bold py-3 px-6 rounded-full transition-all duration-300 focus:outline-none focus:ring-2 focus:ring-purple-400 focus:ring-opacity-50">
I Understand
</button>
</div>
</div>
<div id="particles-js"></div>
<main class="w-full max-w-2xl mx-auto hidden" id="main-content">
<div class="bg-gray-900 bg-opacity-80 backdrop-blur-lg rounded-2xl p-8 shadow-2xl border border-gray-800">
<h1 class="text-3xl font-bold text-center mb-6 text-white">Professor Quote Machine <span class="text-gray-400">🤓</span></h1>
<div id="quote-container" class="quote-container min-h-40 flex items-center justify-center">
<p id="quote-text" class="text-xl md:text-2xl text-center text-white font-medium"></p>
</div>
<div class="mt-8 flex flex-col sm:flex-row justify-center gap-4">
<button id="new-quote-btn" class="button-bounce bg-gradient-to-r from-purple-600 to-blue-500 hover:from-purple-700 hover:to-blue-600 text-white font-bold py-3 px-6 rounded-full transition-all duration-300 focus:outline-none focus:ring-2 focus:ring-purple-400 focus:ring-opacity-50" aria-label="Get a new professor quote">
I need another one 💀
</button>
<button id="share-btn" class="button-bounce bg-gradient-to-r from-gray-600 to-gray-500 hover:from-gray-700 hover:to-gray-600 text-white font-bold py-3 px-6 rounded-full transition-all duration-300 focus:outline-none focus:ring-2 focus:ring-gray-400 focus:ring-opacity-50" aria-label="Share this quote">
Share Quote 📤
</button>
</div>
</div>
</main>
<footer class="mt-8 text-gray-500 text-sm text-center hidden" id="footer">
Built in a moment of academic despair 💀
</footer>
</body>
</html>