-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (39 loc) · 1.57 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
<link rel="stylesheet" href="/css/font-awesome.min.css" >
<link rel="stylesheet" href="/css/main.min.css" >
</head>
<body>
<form class="navbar-form" role="search" id="search-form">
<div class="input-group add-on">
<input class="form-control" placeholder="Search" name="search" id='search' type="text">
<div class="input-group-btn">
<button class="btn btn-default" type="submit"><i class="fa fa-search"></i></button>
</div>
</div>
</form>
<table class="table">
<thead>
<tr>
<th data-sort="number" class="sortable">ID</th>
<th data-sort="text" class="sortable">Title</th>
<th data-sort="text" class="sortable">language</th>
<th data-sort="number" class="sortable">Popularity Index</th>
<th data-sort="number" class="sortable">Votes Count</th>
<th data-sort="number" class="sortable">Ratingx</th>
<th data-sort="date" class="sortable">Release Date</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<script type='text/javascript' src='js/app.js'></script>
</body>
</html>