-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (64 loc) · 2.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Api table</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css">
<!-- Google Fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap">
<!-- Bootstrap core CSS -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.0/css/bootstrap.min.css" rel="stylesheet">
<!-- Material Design Bootstrap -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/mdbootstrap/4.19.0/css/mdb.min.css" rel="stylesheet">
<style>
tr{
height: 50px;
}
</style>
</head>
<body>
<div class="container-fluid">
<div class="row justify-content-between">
<div class="col-8 ml-1">
<div class="md-form mt-0 ">
<input style="font-size: 1.5rem;" class="form-control" type="text" placeholder="Search" aria-label="Search">
</div>
</div>
<div class="col-1">
<select class="mdb-select md-form">
<option value="" disabled selected>Show</option>
<option value="10">10</option>
<option value="20">20</option>
<option value="50">50</option>
<option value="100">100</option>
<option value="All">All</option>
</select>
</div>
</div>
<table border="1" class="table table-striped table-responsive-sm px-0 mx-0" cellspacing="0" width="100%"">
<thead>
</thead>
<tbody >
</tbody>
</table>
<nav aria-label="Page navigation example">
<ul class="pagination pg-blue justify-content-center">
<li class="page-item">
<a class="page-link pageleft z-depth-1">Previous</a>
</li>
<span id="paginationbtn">
</span>
<li class="page-item">
<a class="page-link pageright z-depth-1">Next</a>
</li>
</ul>
</nav>
</div>
<!-- JQuery -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.0/js/bootstrap.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mdbootstrap/4.19.0/js/mdb.min.js"></script>
<script src="index.js"></script>
</body>
</html>