-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (25 loc) · 947 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Random Joke</title>
<link rel="shortcut icon" href="https://cdn.imgbin.com/16/9/23/imgbin-emoticon-smiley-face-with-tears-of-joy-emoji-happiness-crying-emoji-rofl-emoji-ZGqXimm3dnde5WpDjZ9gHJCiH.jpg" type="image/x-icon">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
</head>
<body>
<h1 class="animate__animated animate__wobble">Random Joke Generator</h1>
<div class="container">
<p id="joke">Your Life</p>
<p id="joke-delivery"></p>
</div>
<div class="btn-class">
<button class="hide" id="btn1">Reveal Joke</button>
<button id="btn">Generate Another</button>
</div>
<script src="script.js"></script>
</body>
</html>