-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
30 lines (27 loc) · 1.1 KB
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Random Joke Generator</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
</head>
<body>
<div id="navbar"></div>
<div id="joke-container">
<h1 id="joke">My dad used to sing little ditties. This was my favorite: There was a young lady named Mabel. She
danced on the dining room table. Her face grew red, When...</h1>
<br />
<center>
<button id="but" onclick="jokee()">Refresh To Get Random Joke</button>
</center>
</div>
<div id="favorite-jokes" style="display: none;">
<!-- Favorite jokes will be displayed here -->
</div>
<script src="script.js"></script>
<script src="https://replit.com/public/js/replit-badge.js" theme="blue" defer></script>
</body>
</html>