-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (29 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--CSS-->
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="imgs/bible.jpg">
<title>Bible Quiz</title>
</head>
<body>
<div class="welcome-text" id="welcome-text">
<h1>Welcome to our Bible Quiz!</h1>
<h3>Let's test your knowledge of the Word of God!</h3>
<h4>If you're ready, scroll down to start this quiz.</h4>
<img class="arrow" src="imgs/arrow.png"><br>
<h6 class="verse" id="verse"></h2>
</div>
<div class="question" id="question">
<h3 class="question-text" id="question-text"></h3>
<div id="options-buttons"></div>
<h6 class="explanation" id="explanation"></h6>
<button class="next" id="next">Next</button>
</div>
</body>
<!--JS-->
<script src="app.js"></script>
</html>