-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (29 loc) · 955 Bytes
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Random Joke Generator</title>
</head>
<link rel="stylesheet" href="style.css">
<body>
<div class="container">
<h1>Random Joke Generator</h1>
<div id="emoji">
<p>😂😂😂</p>
</div>
<div id="jokeDisplay">
</div>
<div id="buttons">
<label for="category">Select Category :</label>
<select id="category">
<option value="">Select</option>
<option value="programming">Programing</option>
<option value="funny">Funny</option>
<option value="miscellaneous">Miscellaneous</option>
</select>
<button id="generateBtn">Generate Joke</button>
</div>
<script src="script.js"></script>
</body>
</html>