-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVerse Generator.html
More file actions
28 lines (25 loc) · 971 Bytes
/
Verse Generator.html
File metadata and controls
28 lines (25 loc) · 971 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible">
<title>Let's Bible Verse!</title>
<meta name="description" content="Random Words From The Lord!">
<link rel="stylesheet" type="text/css" href="main.css">
<link href="https://fonts.googleapis.com/css?family=Lobster|Open+Sans+Condensed:300|Spectral+SC" rel="stylesheet">
</head>
<body onload="newQuote()">
<div class = "flex">
<h1>✝ InstaVerse! ✝</h1>
<div class="wrapper">
<div id="quoteDisplay" class = "fade">
</div>
</div>
<h4>Previous Five Verses</h4>
<div class = "preVerse" id = "preVerse">
</div>
<button onclick="newQuote(); tempDisable(this);" id="button">✝ New Verse! ✝</button>
</div>
<script src="javascript.js"></script>
</body>
</html