-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (29 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<title>Guess the Book</title>
<meta name="viewport" content="width = device-width, initial-scale = 1, minimal-ui">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="card" align="center">
<h3>Guess the book</h3>
<h5>By: MPOP Reverse II</h5>
</div>
<div class="card">
<p id="timer"></p>
<p id="score"></p>
<p id="book"></p>
<span class="input">
<input type="text" id="answer">
<button id="button">Initiate the game</button>
</span>
</div>
<div style="text-align: justify;" class="card" id="tutorial">
<p>The game is all about the books from both old and new testament in the bible. The answers must be in case sensitive like "Song of Solomon", "Genesis", and "1 John". If your answer won't match to the book format, it will be invalid or considered as wrong answer. Enjoy playing guys.</p>
<p>Credits to those people who gave me this idea.</p>
<button id="hide">Hide this section</button>
</div>
</body>
<script src="script.js"></script>
</html>