-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htm
48 lines (46 loc) · 1.34 KB
/
index.htm
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
<html>
<head>
<title>SSYYUU
</title>
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.11.5/css/jquery.dataTables.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script type="text/javascript" charset="utf8" src="https://cdn.datatables.net/1.11.5/js/jquery.dataTables.js"></script>
</head>
<body>
<br/>
<div style="margin-left: auto;
margin-right: auto;width: 1200px;">
<table id="table_id" class="display">
<thead>
<tr>
<th>Judul</th>
<th>Kategori</th>
<th>Link</th>
</tr>
</thead>
<tbody>
<tr>
<td>Cara mencari installasi xampp versi lama / usang</td>
<td>Xampp</td>
<td><a href="/posting/post3.htm">Visit</a></td>
</tr>
<tr>
<td>Cara mengatasi .htaccess dan .env tidak ada di cpanel</td>
<td>No Kategori</td>
<td><a href="/posting/post1.htm">Visit</a></td>
</tr>
<tr>
<td>Cara mengatasi error composer laravel version >= 7.3.0</td>
<td>Laravel</td>
<td><a href="/posting/post2.htm">Visit</a></td>
</tr>
</tbody>
</table>
</div>
<script>
$(document).ready(function() {
$('#table_id').DataTable();
} );
</script>
</body>
</html>