-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndex.html
23 lines (23 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;500&display=swap" rel="stylesheet">
<title>Jokes-Api</title>
<link rel="stylesheet" href="/Index.css">
<link rel="shortcut icon" href="/Favicon/Picture.png" type="image/x-icon">
</head>
<body>
<div class="Main">
<h3>Enjoy The Jokes 😄</h3>
<p id="Joke"></p>
<button id="Btn" onclick="GenerateJoke()">Next Joke <i class="fa-solid fa-arrow-right-long"></i> </button>
</div>
<script src="/Index.js"></script>
</body>
</html>