-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (52 loc) · 1.85 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="icon" href="favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Random Jokes </title>
<script src="https://kit.fontawesome.com/4a036f4f29.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css"> <!-- Link CSS -->
<!--remove -->
<link rel="canonical" href="https://ankitmeena007.github.io/random_joke/" />
<link rel="manifest" href="/random_joke/manifest.webmanifest">
<!--remove -->
</head>
<body>
<!--remove -->
<script>
if (navigator.serviceWorker) {
navigator.serviceWorker.register (
'/random_joke/sw.js',
{scope: '/random_joke/'}
)
}
</script>
<!--remove -->
<div class="container">
<h3>Random Jokes Generator</h3>
<div id="joke" class="joke">
Here's the joke for you
</div>
<button id="get_joke" class="btn magic">
Get another joke
</button>
</div>
<!--
<span>By <a target="_blank" href="https://github.com/ankitmeena007/">ANKIT</a></span>
-->
<span>
<a href="https://twitter.com/ankit_d_meena"> <i class="fa-brands fa-x-twitter"></i></a>
<a href="https://github.com/ankitmeena007/"> <i class="fa-brands fa-github"></i></a>
<!--
<a href=""> <i class="fa-brands fa-linkedin"></i></i></i></a>
<a href=""> <i class="fa-brands fa-spotify"></i></i></i></i></a>
-->
<a href="https://ankitmeena007.github.io/">
<img style="float:right" src="favicon.png" height="50" width="50"></p>
</a>
</span>
<script src="script.js"></script> <!-- Link JS -->
</body>
</html>