generated from jlbmagic/js-dev-environment
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
48 lines (46 loc) · 1.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Datatables Starter</title>
<link
rel="stylesheet"
type="text/css"
href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.1.3/css/bootstrap.min.css"
/>
<link
rel="stylesheet"
type="text/css"
href="https://cdn.datatables.net/1.12.1/css/dataTables.bootstrap5.min.css"
/>
<script
type="text/javascript"
src="https://code.jquery.com/jquery-3.6.0.min.js"
></script>
<script
type="text/javascript"
src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.1.3/js/bootstrap.bundle.min.js"
></script>
<script
type="text/javascript"
src="https://cdn.datatables.net/1.12.1/js/jquery.dataTables.min.js"
></script>
<script
type="text/javascript"
src="https://cdn.datatables.net/1.12.1/js/dataTables.bootstrap5.min.js"
></script>
<style>
@import "src/style.css";
</style>
</head>
<body>
<table
id="dtable"
class="table table-striped table-bordered table-sm"
width="100%"
></table>
<script type="module">
import "./src/index.js";
</script>
</body>
</html>