-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (60 loc) · 2.43 KB
/
index.html
File metadata and controls
68 lines (60 loc) · 2.43 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 - Refreshing & Delicious Treats</title>
<link rel="stylesheet" href="styles.css">
<script defer src="script.js"></script>
</head>
<body>
<header>
<h1>STEMULI - Savor the Flavor!</h1>
</header>
<main>
<section class="intro">
<h2>Welcome to STEMULI!</h2>
<p>Affordable and delicious refreshments perfect for summer!</p>
<button class="btn" onclick="showPopup('grandOpeningPopup')">Join Our Grand Opening!</button>
</section>
<section class="menu">
<h2>Our Menu</h2>
<div class="menu-grid">
<div class="menu-item">
<h3>🍹 Refreshing Drinks</h3>
<p>🥒 Cucumber - ₱5.00 (6 oz)</p>
<p>🍋 Lemonade - ₱10.00 (8 oz)</p>
</div>
<div class="menu-item">
<h3>🍽️ Mains</h3>
<p>🍣 Kimbap Roll - ₱25.00 (3 pcs)</p>
<p>🥪 Tuna Bread - ₱15.00</p>
</div>
<div class="menu-item">
<h3>🍰 Desserts</h3>
<p>🍫 Graham Bite - ₱13.00</p>
<p>🍫 Graham Bar - ₱25.00</p>
<p>🍮 Jelly Cake - ₱15.00</p>
</div>
</div>
</section>
<button class="btn order-btn" onclick="showPopup('contactPopup')">Order Now</button>
</main>
<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 Our Grand Opening!</h2>
<p>Prizes await! Be part of our celebration!</p>
<button class="close" onclick="closePopup('grandOpeningPopup')">Close</button>
</div>
<footer>
© 2025 STEMULI. All Rights Reserved.
</footer>
</body>
</html>