-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (60 loc) · 2.45 KB
/
index.html
File metadata and controls
67 lines (60 loc) · 2.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>STEMULI - Affordable & Delicious Treats</title>
<link rel="stylesheet" href="styles.css">
<script defer src="script.js"></script>
</head>
<body>
<header>
<h1>STEMULI - Affordable & Delicious Treats</h1>
</header>
<div class="container">
<h2>Welcome to STEMULI!</h2>
<p>Bringing you the best affordable and delicious refreshments & foods for hot summer days!</p>
<button class="btn" onclick="showPopup('grandOpeningPopup')">Join Our Grand Opening!</button>
</div>
<div class="container menu">
<h2>Our Menu</h2>
<div class="menu-grid">
<div class="menu-item cube">
<h3>Refreshing Iced Drinks</h3>
<p>🍋 Cucumber Lemonade - ₱50</p>
<p>🥭 Mango Shake - ₱60</p>
<p>🍉 Watermelon Cooler - ₱55</p>
</div>
<div class="menu-item cube">
<h3>Main</h3>
<p>🍣 Kimbap - ₱80</p>
<p>🥪 Tuna Bread - ₱40</p>
<p>🍗 Chicken Wrap - ₱90</p>
</div>
<div class="menu-item cube">
<h3>Sweet Desserts</h3>
<p>🍫 Graham Bar - ₱30</p>
<p>🍮 Jelly Cake - ₱45</p>
<p>🎂 Choco Moist Cake - ₱70</p>
</div>
</div>
</div>
<button class="btn order-btn" onclick="showPopup('contactPopup')">Order Now</button>
<div id="overlay" class="overlay" onclick="closePopup('contactPopup'); closePopup('grandOpeningPopup');"></div>
<div id="contactPopup" class="popup">
<h2>Contact Us</h2>
<p><strong>Phone:</strong> +63929-3422-281</p>
<p><strong>Email:</strong> stemuli2025@gmail.com</p>
<p><strong>Address:</strong> Doyong, Calasiao, Pangasinan, Philippines</p>
<button class="close" onclick="closePopup('contactPopup')">Close</button>
</div>
<div id="grandOpeningPopup" class="popup">
<h2>Join Us in Our Grand Opening!</h2>
<p>Exciting prizes await! Be part of our special day and enjoy amazing treats.</p>
<button class="close" onclick="closePopup('grandOpeningPopup')">Close</button>
</div>
<footer>
© 2025 STEMULI. All Rights Reserved.
</footer>
</body>
</html>