-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (68 loc) · 2.57 KB
/
Copy pathindex.html
File metadata and controls
82 lines (68 loc) · 2.57 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Skill Issue Game</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="page-layout">
<!-- LEFT AD -->
<div id= "leftAd" class="side-ad left-ad">
<img src="ads/ad_part_1.png" alt="Left Ad">
<img src="ads/ad_part_2.png" alt="Left Ad 2">
</div>
<!-- MAIN CONTENT -->
<div class="main-content">
<h1>Skill Issue Study Game</h1>
<button id="mainMenuBtn" aria-label="Main Menu">Main Menu</button>
<div id="menuContainer" style="text-align:center;">
<button id="startBtn">Start Game</button>
<button id="continueGameBtn" style="display:none;">Continue</button>
</div>
<div class="top-right-buttons">
<button id="loginBtn">Login</button>
<button id="subscriptionBtn">Subscribe</button>
</div>
<div id="panel" style="display: none;">
<h2 id="panel-title"></h2>
<p id="panel-text"></p>
<div id="panel-choices"></div>
</div>
<div id="powerUpDisplay" style="margin-top:10px; text-align:center;" ></div>
<div id="scoreboard">
<p> Correct: <span id="correctCount">0</span></p>
<p> Wrong: <span id="wrongCount">0</span></p>
<p>Skill: <span id="skillCount">0</span></p>
<p>Life Points: <span id="lifePoints"></span></p>
<p id="message"></p>
</div>
<div id="shop" style="display:none;">
<h2>Skill Shop</h2>
<button class="shop-item" data-cost="5" data-reward="life">Extra Life - 5 Skill</button>
<button class="shop-item" data-cost="10" data-reward="double">skill x2 - 10 skill</button>
<button id="continueBtn">Continue</button>
</div>
<div class="rotating-ad">
<img id="adBanner" src="ads/ad_part_3.png" alt="Rotating Ad">
</div>
</div>
<!-- RIGHT AD -->
<div id= "rightAd" class="side-ad right-ad">
<img src="ads/ad_part_3.png" alt="Right Ad">
<img src="ads/ad_part_4.png" alt="Right Ad 2">
</div>
</div>
<div id="popupWindow" class="hidden">
<div class="popup-box">
<h3>Skill Issue Subscription</h3>
<p>Remove all Advertisements - $4.99</p>
<button id="runFuncBtn">Accept</button>
<button id="closePopupBtn">Close</button>
</div>
</div>
<script type="module" src="firebase.js"></script>
<script type="module" src="auth.js"></script>
<script type="module" src="script.js"></script>
</body>
</html>