-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
executable file
·22 lines (22 loc) · 936 Bytes
/
popup.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<title>Random Scripture Generator</title>
<!-- Treat this as if it is a webpage.
You can add additional css or javascript files if you need them. -->
<link rel="stylesheet" href="app.css">
</head>
<body style="width: 350px;">
<section class="reference-23HPe">
<div style="padding: 20px;">
<img id="newScripture" class="refresh" src="Icons/redo.svg"></img>
<a id="verse-name" class="citation-1gaxH" target="_blank">None</a></span>
<p id="book-volume" class="volume-xX8Uy">Volume</p>
<p id="verse-content" class="verse">Verse Content</p>
</div>
</section>
<!-- Include the Javascript now -->
<script src="verses.js" charset="utf-8"></script>
<script src="popup.js" charset="utf-8"></script>
</body>
</html>