-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
119 lines (98 loc) · 3.61 KB
/
index.html
File metadata and controls
119 lines (98 loc) · 3.61 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Teen's Taste</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Header -->
<header>
<nav>
<h1 class="Logo"><a href="#hero">Teen's Taste</a></h1>
<ul class="nav-bar">
<li><a href="#hero">Home</a></li>
<li><a href="#menu">Menu</a></li>
<li><a href="#about">About</a></li>
</ul>
</nav>
</header>
<!-- header section -->
<section id="hero">
<div class="hero-content">
<h2>Welcome to Teen's Taste 🍴</h2>
<p>Delicious Meals For Teens</p>
</div>
</section>
<!-- Menu section -->
<section id="menu">
<h2>Our Menu</h2>
<!-- Filter buttons -->
<div class="filter-buttons">
<button class="btn" food-filter="all">All</button>
<button class="btn" food-filter="veg">Veg</button>
<button class="btn" food-filter="non-veg">Non-Veg</button>
<button class="btn" food-filter="dessert">Dessert</button>
</div>
<!-- Menu items -->
<div class="menu-items">
<div class="menu-card veg">
<h3>🍕 Paneer Pizza</h3>
<p>Cheesy and topped with fresh paneer</p>
</div>
<div class="menu-card veg">
<h3>🥟 Veg Momo</h3>
<p>Juicy Momo made with freshly harvested vegetables </p>
</div>
<div class="menu-card non-veg">
<h3>🍔 Chicken Burger</h3>
<p>Juicy chicken patty with sauces</p>
</div>
<div class="menu-card non-veg">
<h3>🍗 Grilled Chicken</h3>
<p>Perfectly seasoned and juicy</p>
</div>
<div class="menu-card dessert">
<h3>🍰 Cheese Cake</h3>
<p>Rich and creamy delight</p>
</div>
<div class="menu-card dessert">
<h3>🍨 Ice Cream</h3>
<p>Cool and refreshing scoops</p>
</div>
</div>
</section>
<!-- About section -->
<section id="about">
<h2>About Us</h2>
<p>At Teen's Taste, we serve food made with love and fresh ingredients. Our chefs bring best flavors to your
plate.</p>
<div class="chefs">
<div class="chef-card">
<img src="chef-images/chef-ramesh.png" alt="Chef Ramesh cooking non-veg dishes"
style="max-width: 100%; height: auto; border-radius: 50%; border:none;">
<h3>Chef Ramesh</h3>
<p>Non-Veg Food Expert</p>
</div>
<div class="chef-card">
<img src="chef-images/chef-tina.png" alt="Chef Tina cooking veg dishes"
style="max-width: 100%; height: auto; border-radius: 50%; border:none;">
<h3>Chef Tina</h3>
<p>Veg Food Expert </p>
</div>
<div class="chef-card">
<img src="chef-images/chef-john.png" alt="Chef Jhon for best Desserts"
style="max-width: 100%; height: auto; border-radius: 50%; border:none;">
<h3>Chef Jhon</h3>
<p>Master of Desserts</p>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<p>© 2025 Teen's Taste Restaurant | All Rights Reserved</p>
</footer>
<script src="script.js"></script>
</body>
</html>