-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (45 loc) · 896 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
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Bible with JavaScript</h1>
<hr>
<br>
<br>
<div id="app">
<table>
<tr>
<td>
<label for="book">Book</label>
</td>
<td>
<select name="book" name="books" id="books"></select>
</td>
</tr>
<tr>
<td>
<label for="chapter">Chapter </label>
</td>
<td>
<select name="chapter" id="chapter"></select>
</td>
</tr>
<tr>
<td>
<label for="verse">Verse </label>
</td>
<td>
<select name="verse" id="verse"></select>
</td>
</tr>
</table>
<div id="text">
<p>Verse Text</p>
</div>
</div>
<hr>
<div id="diag"></div>
<script type="module" src="bible.js"></script>
<script type="module" src="index.js"></script>