-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (31 loc) · 1005 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="design.css" />
<title>Programming Jokes 2021</title>
</head>
<body>
<div class="app">
<p class="header">Programming Jokes 2021 😂</p>
<main>
<div class="loader header header--primary" id="loader">
<p>Getting the Best Joke</p>
<div class="dot-flashing-container">
<div class="dot dot--1"></div>
<div class="dot dot--2"></div>
<div class="dot dot--3"></div>
</div>
</div>
<div class="joke hide" id="joke">
<h2 class="joke__setup" id="joke-setup"></h2>
<h3 class="joke__delivery" id="joke-delivery"></h3>
<button class="btn" id="next-btn">Next Joke</button>
</div>
</main>
<footer></footer>
</div>
<script src="script.js"></script>
</body>
</html>