-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (88 loc) · 1.67 KB
/
index.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Sorting Table</title>
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body>
<h1>Sorting Table</h1>
<table class="sortable">
<thead>
<tr>
<th data-sort="name">Genre</th>
<th data-sort="name">Title</th>
<th data-sort="duration">Duration</th>
<th data-sort="date">Date</th>
</tr>
</thead>
<tbody>
<tr>
<td>Action</td>
<td>Star Wars: The Last Jedi</td>
<td>2:30</td>
<td>2017-02-16</td>
</tr>
<tr>
<td>Animation</td>
<td>Beauty and the Beast</td>
<td>1:24</td>
<td>1991-01-28</td>
</tr>
<tr>
<td>Documentary</td>
<td>Zero Days</td>
<td>1:40</td>
<td>2015-03-08</td>
</tr>
<tr>
<td>Musical</td>
<td>La Land</td>
<td>2:28</td>
<td>2016-05-10</td>
</tr>
<tr>
<td>Romance</td>
<td>The Sweet Life </td>
<td>1:30</td>
<td>2015-04-18</td>
</tr>
<tr>
<td>Adventure</td>
<td>Silence</td>
<td>3:01</td>
<td>2016-06-13</td>
</tr>
<tr>
<td>Drama</td>
<td>Manchester by the Sea</td>
<td>2:17</td>
<td>2014-01-05</td>
</tr>
<tr>
<td>Fantesy</td>
<td>The Great Wall</td>
<td>1:23</td>
<td>2016-02-10</td>
</tr>
<tr>
<td>Biography</td>
<td>The Greatest Showman</td>
<td>2:15</td>
<td>2017-01-09</td>
</tr>
<tr>
<td>Animation</td>
<td>The Secret Life of Pets</td>
<td>1:27</td>
<td>2016-04-18</td>
</tr>
</tbody>
</table>
<script
src="https://code.jquery.com/jquery-3.1.1.min.js"
integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
crossorigin="anonymous"></script>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>