-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
175 lines (161 loc) Β· 7.87 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- font-awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css" integrity="sha512-1sCRPdkRXhBV2PBLUdRb4tMg1w2YPf37qatUFeS7zlBy7jJI8Lf4VHwWfZZfpXtYSLy85pkm9GaYVYMfw5BC1A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Bootstrap css -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
<!-- style -->
<link rel="stylesheet" href="style.css">
<title>Bootstrap demo</title>
</head>
<body>
<!-- #################### navbar ##################### -->
<nav class="navbar navbar-expand-lg navbar-dark">
<div class="container-fluid">
<a class="navbar-brand mx-md-5" href="#">
<img src="./images/logo.png" alt="" width="65px">
<h4 class="mx-2 d-inline">Food Land</h4>
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse mx-md-5" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#features-section">Features</a>
</li>
<li class="nav-item ">
<a class="nav-link active" href="#carouselExampleIndicators">Reviews</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container-fluid">
<!-- ################## showcase ####################### -->
<div class="row justify-content-evenly pt-3 pb-5 showcase">
<div class="col-lg-5 pt-5 showcase-text">
<p>Try our traditional handmade food made with love and is a delight for the whole family
</p>
<h4 class="text-center">~ You will adore it.</h4>
</div>
<div class="col-lg-5 pt-5 text-center">
<img src="./images/show-case.jpg" class="img-fluid" alt="">
</div>
</div>
<!-- ################## features #################### -->
<div class="row text-center pt-5" id="features-section">
<div class="col-12">
<h1 class="features-main-heading">Features</h1>
</div>
</div>
<div class="row justify-content-evenly features pt-3 pb-5">
<div class="col-md-3 text-center pt-4">
<img src="./images/ingredients.png" class="img-fluid" alt="">
<h3 class="pt-3">Fresh Produce</h3>
<p>We use the freshest ingredients from the local market</p>
</div>
<div class="col-md-3 text-center pt-4">
<img src="./images/chefs.png"class="img-fluid" alt="">
<h3 class="pt-3">Our Experienced Chefs</h3>
<p>The best and experienced chef from your own local community</p>
</div>
<div class="col-md-3 text-center pt-4">
<img src="./images/furniture.png" class="img-fluid"alt="">
<h3 class="pt-3">Ample Space</h3>
<p>Our furniture is huge enough to make feel like a king</p>
</div>
</div>
</div>
<!-- ################### reviews ####################### -->
<div id="carouselExampleIndicators" class="carousel slide bg-dark text-white" data-bs-ride="true">
<h1 class="reviews-heading text-center pb-3">Reviews</h1>
<div class="carousel-indicators">
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="0" class="active" aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="1" aria-label="Slide 2"></button>
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="2" aria-label="Slide 3"></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<h2>πππππ</h2>
<p>Best place to enjoy with friends.</p>
<img src="./images/person1.png" alt="">
<h4>dany</h4>
</div>
<div class="carousel-item">
<h2>πππππ</h2>
<p>They offer excellent arrangements.</p>
<img src="./images/person2.png" alt="">
<h4>dany</h4>
</div>
<div class="carousel-item">
<h2>πππππ</h2>
<p>Food is awesome 😋</p>
<img src="./images/person3.png" alt="">
<h4>dany</h4>
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<!-- ################# arrrangements ###################### -->
<div class="container-fluid">
<div class="row pt-5">
<div class="col-12">
<h1 class="arrangements-heading text-center">Arrangements for : </h1>
</div>
</div>
<div class="row justify-content-evenly text-center pb-5" id="experiences">
<div class="col-md-3 pt-5">
<div class="card">
<img src="./images/birthday.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">BIRTHDAY</h5>
<p class="card-text">Enjoy your best day here at our place and have a blast.</p>
</div>
</div>
</div>
<div class="col-md-3 pt-5">
<div class="card">
<img src="./images/business.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">OFFICE MEETING</h5>
<p class="card-text">Take a chill pill eating with your colleagues</p>
</div>
</div>
</div>
<div class="col-md-3 pt-5">
<div class="card">
<img src="./images/candle.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">CANDLE-LIGHT DINNER</h5>
<p class="card-text">Your best moments with us lookinig at you.</p>
</div>
</div>
</div>
</div>
<div class="row pt-4 pb-3 bg-dark text-white">
<div class="col-12 text-center p">
<h5 class="pt-2 pb-2"> © Copyright 2022 , All Rights Reserved</h5>
<h5>Come find us here : </h5>
<a href=""><i class="fa-brands fa-facebook"></i></a>
<a href=""><i class="fa-brands fa-instagram"></i></a>
<a href=""><i class="fa-brands fa-square-twitter"></i></a>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa" crossorigin="anonymous"></script>
</body>
</html>