-
Notifications
You must be signed in to change notification settings - Fork 0
/
cars-sort-table2.html
49 lines (45 loc) · 1.06 KB
/
cars-sort-table2.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
49
<script src="sorttable.js" type="text/javascript"></script>
Click the header to sort.
<table border="5" class="sortable" style="font-family:calibri;font-size:20px" cellpadding="10">
<tr>
<th> Image </th>
<th>Year</th>
<th>Make</th>
<th>Model</th>
<th>Description</th>
<th>Date (YYYY/MM/DD)</th>
<th>Location</th>
<th>Camera</th>
</tr>
<tr>
<td><img src="IMG_1472.JPG" width="282"></img></td>
<td>2018</td>
<td>Volkswagen</td>
<td>Atlas</td>
<td>Testing</td>
<td>2018/06/23</td>
<td>Dufferin</td>
<td>Moto E4</td>
</tr>
<tr>
<td>IMAGE</td>
<td>2005</td>
<td>Volkswagen</td>
<td>Passat</td>
<td>Testing</td>
<td>2008/01/28</td>
<td>Major Mack</td>
<td>Moto E4</td>
</tr>
<tr>
<td>IMAGE</td>
<td>1956</td>
<td>Chevrolet</td>
<td>Imapala</td>
<td>Testing</td>
<td>2010/12/03</td>
<td>Finch</td>
<td>iPod Touch</td>
</tr>
</table>
This sortable table code has been used from: https://kryogenix.org/code/browser/sorttable/