-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (42 loc) · 1.62 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://kit.fontawesome.com/773a46527c.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="styles.css">
<title>Programming Jokes Generator</title>
</head>
<body>
<header>
<div class="switch">
<div class="flicker"></div>
<div class="moon"></div>
</div>
</header>
<section class="main">
<div class="container">
<h1>Programming jokes!</h1>
<div id="joke" class="joke"></div>
<button id="jokeBtn" class="btn">Get joke!</button>
</div>
</section>
<footer>
<div>
<p>Crafted with ❤️ by Ellis Ifoegbu © <script>
document.write(new Date().getFullYear())
</script>
</p>
<div class="social-icons">
<a href="https://www.facebook.com/Ellisice" target="blank"><i class="fab fa-facebook fa-2x"></i></a>
<a href="https://github.com/unknownaloy" target="blank"><i class="fab fa-github fa-2x"></i></a>
<a href="https://www.instagram.com/ellisaloy/" target="blank"><i class="fab fa-instagram fa-2x"></i></a>
<a href="https://www.linkedin.com/in/ellis-ifoegbu-3aa87717b/" target="blank"><i class="fab fa-linkedin fa-2x"></i></a>
<a href="https://twitter.com/Ellisice" target="blank"><i class="fab fa-twitter fa-2x"></i></a>
<a href="https://stackoverflow.com/users/10296000/chichebe?tab=profile" target="blank"><i class="fab fa-stack-overflow fa-2x"></i></a>
</div>
</div>
</footer>
</body>
<script src="app.js"></script>
</html>