-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJokes.html
More file actions
30 lines (27 loc) · 1.01 KB
/
Copy pathJokes.html
File metadata and controls
30 lines (27 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
26
27
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Random jokes</title>
<link rel="stylesheet" href="Jokes.css">
</head>
<body>
<div id="joke-container" class="containers">
<img id="lol-img" src="lol emoji1.png" width="200px" height="200px">
<h3 id="joke">Click Generate to Get Joke</h3>
<button id="generate-btn">Generate</button>
<div id="keep-smile-div"><h2 id="keep-smile-text">Keep Smiling 😊👍</h2></div>
</div>
<div id="text-container" class="containers">
<h2 class="joke-heading">Random Joke Generator<br></h2>
<div class="lol-textdiv">
<img id="lol-emoji" src="lol emoji1.png"></img>
</div>
<div id="texts">
<h2 id="theory">Hello Welcome to Joke Generator<br>Thanks For Visiting ❤️<br>Have a Nice Day✨</h2>
</div>
</div>
<script src="Jokes.js"></script>
</body>
</html>