-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (23 loc) · 880 Bytes
/
index.html
File metadata and controls
42 lines (23 loc) · 880 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Group API Project</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
<!-- include Firebase library before JS loads.-->
<script src="https://www.gstatic.com/firebasejs/4.13.0/firebase.js" defer></script>
<script src="script.js" defer></script>
</head>
<body>
<main>
<h1>Group API Project</h1>
<p>Click the button below to see a random dad joke each time. Prepare to laugh your socks off!</p>
<button id="jokeButton">Click me!</button>
<p>
<p id="jokeBoxId">Show Joke ID.</p>
<p id="jokeBoxJoke">Show Joke.</p>
</main>
</body>
</html>