-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (32 loc) · 1.15 KB
/
index.html
File metadata and controls
32 lines (32 loc) · 1.15 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
<!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="Elevate your mood instantly with LexiLaughter! Discover laughter therapy techniques and tips to boost your happiness and well-being today."
/>
<title>LexiLaughter | Instant Mood Elevation</title>
<link
href="https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="styles/style.css" />
<link rel="icon" href="assets/favicon.ico">
</head>
<body>
<div class="background-blobs"></div>
<main class="joke-card">
<div class="icon">😂</div>
<h1>Daily Dose of Laughter</h1>
<div id="jokeContainer" aria-live="polite">
<p class="joke-text">Click the button to brighten your day!</p>
</div>
<button id="btn" aria-label="Generate a new joke">Get New Joke</button>
<footer>Handcrafted for Smiles ✨</footer>
</main>
<script src="scripts/jokes.js"></script>
<script src="scripts/app.js"></script>
</body>
</html>