-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLaughzone.html
More file actions
67 lines (63 loc) · 1.75 KB
/
Copy pathLaughzone.html
File metadata and controls
67 lines (63 loc) · 1.75 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
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Laugh Zone</title>
<style>
body {
font-family: 'Comic Sans MS', cursive, sans-serif;
background-color: #f0f0f0;
text-align: center;
margin: 0;
padding: 20px;
}
h1 {
color: #ff4500;
}
.joke-container {
max-width: 600px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
text-align: left;
}
.joke {
font-size: 1.2em;
margin-bottom: 10px;
}
.footer {
margin-top: 20px;
color: #777;
}
.footer a {
color: #ff4500;
text-decoration: none;
}
</style>
</head>
<body>
<header>
<h1>Welcome to the Laugh Zone!</h1>
</header>
<div class="joke-container">
<div class="joke">
<p>Why don't scientists trust atoms?</p>
<p>Because they make up everything!</p>
</div>
<div class="joke">
<p>Why was the math book sad?</p>
<p>It had too many problems.</p>
</div>
<div class="joke">
<p>Why don't programmers like nature?</p>
<p>It has too many bugs.</p>
</div>
</div>
<footer class="footer">
<p>Thanks for visiting the Laugh Zone! Check out more funny stuff <a href="https://example.com">here</a>.</p>
</footer>
</body>
</html>