-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (55 loc) 路 2.26 KB
/
Copy pathindex.html
File metadata and controls
64 lines (55 loc) 路 2.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dear Kinza Will You Be My Valantiner?</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Great+Vibes&family=Poppins:wght@400;600&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Background Music (Optional, user initiates) -->
<audio id="bg-music" loop>
<source src="music.mp3" type="audio/mpeg">
</audio>
<div id="game-container">
<canvas id="gameCanvas"></canvas>
<!-- UI Overlay -->
<div id="ui-layer">
<div id="score-board">
<span>鉂わ笍 Love Meter: </span>
<div class="progress-bar">
<div id="love-fill"></div>
</div>
</div>
</div>
<!-- Start Screen -->
<div id="start-screen" class="screen active">
<h1>Catch the Love Dear Kinza Miss's Mushif Jutt!</h1>
<p>Catch enough hearts to reveal a special question...</p>
<button id="start-btn" class="btn">Start Game</button>
</div>
<!-- Proposal Modal (Hidden initially) -->
<div id="proposal-screen" class="screen hidden">
<div class="proposal-content">
<h1>Happay Valantiner?</h1>
<p class="sub-text">You Are the Best One! Now I have to ask...</p>
<div class="buttons">
<button id="yes-btn" class="btn yes-btn">YES!</button>
<button id="no-btn" class="btn no-btn">No</button>
</div>
</div>
</div>
<!-- Celebration Overlay -->
<div id="celebration-screen" class="screen hidden">
<h1>Happy Valantine Day may Allah Blessed you Always And Be Happy Forever In All Your Life!Here Are The Little Gift From Me.
Will You Marry Me?馃拲</h1>
<p>Don't Worry I Am Always With You Ever Forever All My Life!</p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>