-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (19 loc) · 752 Bytes
/
index.html
File metadata and controls
25 lines (19 loc) · 752 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
<!DOCTYPE html>
<html>
<head>
<title> Very Real Magic 8 Ball</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>MAGIC 8 BALL!!</h1>
<p>Ask me a yes or no question and I will answer with a answer that is correct %100 of the time(The divines are too busy to answer non yes or no questions)</p>
<input type="text" id="Askmequestion" placeholder="Type your divine question here and I will answer the correct answer">
<br>
<button onclick="askQuestion()">Get The Divine Answer</button>
<div id="ball">
<div id="answer">Give me your question, I will give the answer</div>
</div>
<div id="question"></div>
<script src="script.js"></script>
</body>
</html>