Widuri-Client/index.html
2025-06-10 11:30:09 +07:00

28 lines
841 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Widuri</title>
<link rel="stylesheet" href="//cdn.datatables.net/2.3.2/css/dataTables\.dataTables.min.css">
</head>
<body>
<table id="table-list">
<thead>
<tr>
<th>ID</th>
<th>Name</th>
<th>Phone</th>
</tr>
</thead>
<tbody></tbody>
</table>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script src="//cdn.datatables.net/2.3.2/js/dataTables.min.js"></script>
<script src="js/carrack.js"></script>
<script src="js/data.js"></script>
</body>
</html>