-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (37 loc) · 1.08 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
<!DOCTYPE html>
<html>
<head>
<!-- <base href="file://index.html/"> -->
<meta charset="UTF-8">
<script type="text/javascript" src="node_modules/jquery/dist/jquery.min.js"></script>
<link rel="stylesheet" href="./index.css" media="screen" charset="utf-8">
<link rel="stylesheet" href="./node_modules/bootstrap/dist/css/bootstrap.min.css" media="screen" charset="utf-8">
</head>
<body>
<header >
<div class="clearfix text-center">
<h1>Title </h1>
</div>
</header>
<div class="cntr">
<form class="search-box">
<input type="text" placeholder=" "/>
<button type="reset"></button>
</form>
</div>
<table class="table" id="table">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Name</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<footer class="navbar fixed-bottom">
<button type="button" id="closeButton" class="btn btn-sm btn-info" aria-label="Close">Quit</button>
</footer>
<script src="./renderer.js"></script>
</body>
</html>