-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (43 loc) · 1012 Bytes
/
index.html
File metadata and controls
49 lines (43 loc) · 1012 Bytes
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
49
<!DOCTYPE html>
<html>
<head>
<title>jQuery Table Sort</title>
<meta name="viewport" content="width=device-width, height=device-height, viewport-fit=cover, initial-scale=1" />
<link type="text/css" href="css/main.css" rel="stylesheet" />
</head>
<body>
<table>
<caption>Users</caption>
<thead>
<tr>
<th>ID</th>
<th>First Name</th>
<th>Last Name</th>
<th class="no-sort"> </th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Luke</td>
<td>Skywalker</td>
<td>X</td>
</tr>
<tr>
<td>2</td>
<td>Leia</td>
<td>Organa</td>
<td>X</td>
</tr>
<tr>
<td>3</td>
<td>Anakin</td>
<td>Skywalker</td>
<td>X</td>
</tr>
</tbody>
</table>
<script src="js/jquery-3.6.0.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>