-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 1.01 KB
/
Copy pathindex.html
File metadata and controls
25 lines (25 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Random Quote Generator</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-100 flex items-center justify-center min-h-screen">
<div class="bg-white shadow-lg rounded-lg p-6 max-w-md text-center">
<h1 class="text-2xl font-bold text-gray-800 mb-4">Random Quote Generator</h1>
<p id="quote-display" class="text-lg text-gray-600 italic mb-4">
Click the button to see a random quote!
</p>
<p id="quote-author" class="text-sm text-gray-500 mb-6">
<!-- - Author Name -->
</p>
<button id="generate-quote-btn"
class="bg-blue-500 text-white px-6 py-2 rounded-lg shadow hover:bg-blue-600 focus:outline-none focus:ring-2 focus:ring-blue-400">
Generate Quote
</button>
</div>
<script src="./output/main.js"></script>
</body>
</html>