-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (28 loc) · 1.03 KB
/
index.html
File metadata and controls
32 lines (28 loc) · 1.03 KB
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
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mind Reader</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="container">
<h1>Welcome to ECXC Mind Reader</h1>
<h3>Think of someone on the team and answer yes or no</h3>
<div id="question-container">
<p id="question">Are you thinking of something?</p>
<button onclick="answerQuestion('yes')">Yes</button>
<button onclick="answerQuestion('no')">No</button>
</div>
<div id="result-container" style="display:none;">
<p id="result">I think you're thinking of: <span id="guessed-result"></span></p>
<img id="result-image" src="" alt="Result Image" class="hidden">
</div>
</div>
<div id="logos-container">
<img id="logo" src="images/mainLogo.png" alt="etown logo">
</div>
<script src="index.js"></script>
</body>
</html>