-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
40 lines (35 loc) · 862 Bytes
/
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 lang="us">
<head>
<meta charset="utf-8">
<title>Bibliar</title>
<link href="style.css" rel="stylesheet" />
</head>
<body>
<div class="container">
<table>
<tr>
<td>Version</td>
<td>Books</td>
<td>Chapters</td>
<td>Versicle</td>
</tr>
<tr>
<td><select id="bibliar_t" > </select></td>
<td><select id="bibliar_b"> </select></td>
<td><select id="bibliar_c"></select></td>
<td><select id="bibliar_v"> </select></td>
</tr>
<tr>
<td colspan="3">
<input type="text" id="bibliar_s" value="" />
</td>
<td><input type="button" id="bibliar_a" value="Search" /></td>
</td>
</table>
<div id="bibliar_r"></div>
</div>
<script src="inc/jquery.js"></script>
<script src="inc/app.js"></script>
</body>
</html>