Widuri-Client/index.html
2025-06-10 11:33:28 +07:00

30 lines
756 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 Client</title>
<link rel="stylesheet" href="https://cdn.datatables.net/2.3.2/css/datables\.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="https://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>