-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbout.html
More file actions
101 lines (92 loc) · 4.15 KB
/
About.html
File metadata and controls
101 lines (92 loc) · 4.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About-Maruti Nandan</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
body {
background: linear-gradient(to bottom left, #ff4500, #fff, #00ff00);
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
h3 {
color: red;
font-weight: bold;
}
p {
color: blue;
font-family: cursive;
}
.carousel-inner {
height: 400px;
}
.carousel-item img {
object-fit: cover;
height: 100%;
width: 100%;
}
.footer-bottom {
background-color: #343a40;
color: white;
text-align: center;
padding: 10px 0;
}
</style>
</head>
<body>
<header class="bg-dark text-white p-3">
<div class="container d-flex justify-content-between align-items-center">
<a href="https://shreemarutinandanrestaurant.com/" target="_blank">
<img src="https://shreemarutinandanrestaurant.com/wp-content/uploads/2022/01/mlogo.png" alt="Logo Image"
height="50" width="150">
</a>
<ul class="list-unstyled d-flex mb-0">
<li class="me-3"><a href="index.html" class="nav-link">Home</a></li>
<li class="me-3"><a href="Menu.html" class="nav-link">Menu</a></li>
<li><a href="Contact.html" class="nav-link">Contact</a></li>
</ul>
</div>
</header>
<section class="container mt-5">
<div class="row">
<div class="col-md-6">
<h3>22 Years Of Shree Marutinandan Restaurants!</h3>
<p>
Shree Marutinandan Restaurants today is not only the most widespread chain of restaurants
in Ahmedabad but also has successfully carved out its identity as the most authentic
Kathiyawadi cuisine-serving restaurants. Alongside that, you will also find a wide range
of Punjabi, Chinese, and selected delicacies from Rajasthani and Continental cuisines.
The reason behind choosing Kathiyawadi cuisine to start with was simple – Amdavadis loved
Kathiyawadi cuisine, but there were few serving the delicacies with an authentic taste.
The early few restaurants that were opened (still serving guests) not only served the real
taste but also had a traditional Khaatla-Bethak sitting arrangement that became an identity
of the restaurants. Today, out of the 16 branches, many have modern aesthetics, interiors,
and ambiance, along with banquet halls and gardens. Over the years, our efforts, from
introducing new delicacies or cuisines to opening new branches with unique interiors, have
all been embraced with love by the taste lovers. With restaurants in almost every corner
of Ahmedabad, we would like to say a big thank you for your support and love.
</p>
</div>
<div class="col-md-6">
<br><br><br><br>
<a href="https://shreemarutinandanrestaurant.com/" target="_blank">
<img src="https://shreemarutinandanrestaurant.com/wp-content/uploads/2022/01/pakwan-sa.png"
alt="Logo Image" height="370" width="520">
</a>
</div>
</div>
</section><br>
<div class="footer-bottom">
<div class="container">
<div>©
<script language="javascript" type="text/javascript">document.write(new Date().getFullYear());</script>
Copyright Maruti Nandan. All Rights Reserved.
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>