-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (27 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en" data-bs-theme="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dad Jokes - Matrix Style</title>
<link rel="stylesheet" href="src/css/bootstrap.css">
<link rel="stylesheet" href="src/css/style.css">
<!-- Adicione outros CSS se necessário -->
</head>
<body class="d-flex flex-column align-items-center justify-content-center min-vh-100">
<div class="text-center">
<h1 class="mb-4">Dad Jokes</h1>
<div id="joke-container" class="p-4 border rounded">
<p>Loading joke...</p>
</div>
<button id="new-joke-btn" class="btn btn-primary mt-3">Get another joke</button>
</div>
<!-- Inclua jQuery primeiro -->
<script src="src/js/jquery.js"></script>
<!-- Outros scripts -->
<script src="src/js/bootstrap.js"></script>
<script src="src/js/sweetalert.js"></script>
<script src="src/js/datatable.js"></script>
<script src="src/js/xxx.js"></script>
</body>
</html>