-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (40 loc) · 1.34 KB
/
index.html
File metadata and controls
40 lines (40 loc) · 1.34 KB
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="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Bible Verse Generator</title>
<link rel="stylesheet" href="CSS/styles.css" />
<link rel="stylesheet" href="CSS/variables.css" />
</head>
<body>
<!-- Wrapper for content -->
<section class="wrapper">
<!-- Background Design -->
<div class="hero"></div>
<div class="content">
<h1 class="h1" data-text="Bible Verse Generator">
Bible Verse Generator
</h1>
<!-- Verse-generator -->
<div class="generator">
<select id="translation">
<option value="web">World English Bible</option>
<option value="kjv">King James Version</option>
<option value="bbe">Bible in Basic English</option>
</select>
<button id="random-verse">Generate Random Verse</button>
<div id="output"></div>
<!-- Text be changed by h2 and p -->
</div>
<!-- Image-generator -->
<div id="imageWrapper">
<img id="image" src="" alt="Heavenly Image" />
</div>
<button id="imageButton">Change Image</button>
</div>
</section>
<script src="JS/bibleVerses.js"></script>
<script src="JS/jesusImages.js"></script>
</body>
</html>