############ SET FAVICON IMAGE ###############
<html lang="en">
<head>
<title>Site Title</title>
<link rel="icon" href="path/image.png" type="image/x-icon" />
</head>
<body></body>
</html>
######### Sort Bootstrap Table ##################
<link href="https://unpkg.com/bootstrap-table@1.13.5/dist/bootstrap-table.min.css" rel="stylesheet">
<script src="https://unpkg.com/bootstrap-table@1.13.5/dist/bootstrap-table.min.js"></script>
<table
id="table"
data-toggle="table"
data-height="460"
data-sort-name="name"
data-sort-order="desc"
data-url="json/data1.json">
<thead>
<tr>
<th data-field="id" data-sortable="true">ID</th>
<th data-field="name" data-sortable="true">Item Name</th>
<th data-field="price" data-sortable="true">Item Price</th>
</tr>
</thead>
</table>
Comments
Post a Comment