-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (85 loc) · 2.27 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Street Treats</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<!-- Navigation Bar -->
<nav class="navbar">
<ul>
<li><a href="#menu">Food Items</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#aboutus">About Us</a></li>
</ul>
</nav>
<!-- Header Section -->
<header class="header">
<h1>Street Treats</h1>
</header>
<!-- Menu Section -->
<section id="menu" class="menu">
<h2>Food Menu</h2>
<div class="menu-items">
<div class="item">
<h3>Crispy Chicken Burger</h3>
<p>45 BDT</p>
</div>
<div class="item">
<h3>Chicken Fry</h3>
<p>40 BDT</p>
</div>
<div class="item">
<h3>Chicken Samusa</h3>
<p>12 BDT</p>
</div>
<div class="item">
<h3>Chicken Roll</h3>
<p>20 BDT</p>
</div>
<div class="item">
<h3>French Fries</h3>
<p>40 BDT</p>
</div>
</div>
<hr>
<h2>Combo Platters</h2>
<div class="combo-items">
<div class="combo">
<h3>Combo 1</h3>
<p>Crispy Chicken Burger + Chicken Fry + French Fries</p>
<p>100 BDT</p>
</div>
<div class="combo">
<h3>Combo 2</h3>
<p>Crispy Chicken Burger (2 pcs) + French Fries</p>
<p>120 BDT</p>
</div>
<div class="combo">
<h3>Combo 3</h3>
<p>Chicken Samusa (3 pcs) + Chicken Roll + Chicken Fry</p>
<p>90 BDT</p>
</div>
</div>
</section>
<hr>
<!-- Contact Section -->
<section id="contact" class="contact">
<h2>Contact</h2>
<p>Address: Kazir Dewri, Chattogram, Bangladesh.</p>
</section>
<!-- About Us Section -->
<section id="aboutus" class="aboutus">
<h2>About Us</h2>
<p>We're providing healthy and hygiene street foods in the city.</p>
</section>
</div>
<!-- Footer Section -->
<footer>
<small>All rights reserved.</small>
</footer>
</body>
</html>