-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (54 loc) · 2.06 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
<!DOCTYPE html>
<html>
<head>
<title>Bible Compare</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<noscript>You need JavaScript enabled for this to work</noscript>
<h1>Compare Bible Passages</h1>
<button id="button1">Compare</button>
<div class="box">
<select id="translation1">
<option value="asv">American Standard Version</option>
<option value="emphbbl">The Emphasized Bible</option>
<option value="kjv">King James Version</option>
<option value="leb">The Lexham English Bible</option>
<option value="ylt">Young's Literal Translation</option>
<option value="darby">Darby Bible</option>
</select>
<input id="search1" type="text" placeholder="Search Bible Verses..." />
<p id="error1">There was an error</p>
<div id="result1">
<span id="ref1"></span>
<p id="script1">Verse will be here...</p>
</div>
<div id="stats1">
<p><span id="words1"></span> words.</p>
<p><span id="chars1"></span> characters.</p>
</div>
</div>
<div class="box">
<select id="translation2">
<option value="asv">American Standard Version</option>
<option value="emphbbl">The Emphasized Bible</option>
<option value="kjv">King James Version</option>
<option value="leb">The Lexham English Bible</option>
<option value="ylt">Young's Literal Translation</option>
<option value="darby">Darby Bible</option>
</select>
<input id="search2" type="text" placeholder="Search Bible Verses..." />
<p id="error2">There was an error</p>
<div id="result2">
<span id="ref2"></span>
<p id="script2">Verse will be here...</p>
</div>
<div id="stats2">
<p><span id="words2"></span> words.</p>
<p><span id="chars2"></span> characters.</p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>