-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (22 loc) · 728 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
<!DOCTYPE html>
<html lang="de">
<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">
<script src="https://cdn.tailwindcss.com/"></script>
<title>Job Orakel</title>
</head>
<body class="flex flex-col items-center">
<button onclick="randJob()"
class="mt-5 bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 border border-blue-700 rounded" id="btt">
Get Job
</button>
<div class="lg:w-1/2 mt-5">
<p id="fetchedData"></p>
<p id="fetchedData2"></p>
<p id="fetchedData3"></p>
</div>
<script src="./script.js"></script>
</body>
</html>