-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
99 lines (91 loc) · 2.96 KB
/
about.html
File metadata and controls
99 lines (91 loc) · 2.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Restaurant</title>
<style>
/* General Styles */
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background: url('bg2.jpeg') no-repeat center center fixed;
background-size: cover;
color: #333;
}
#home {
padding: 20px;
background:none;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
max-width: 900px;
margin: 20px auto;
border-radius: 8px;
}
h2, h3 {
text-align: center;
color: #555;
}
hr {
border: none;
border-top: 2px solid #eee;
margin: 20px 0;
}
.image-gallery {
text-align: center;
}
.image-gallery img {
width: 200px;
margin: 10px;
border: 2px solid #ddd;
border-radius: 8px;
transition: transform 0.3s ease, border-color 0.3s ease;
}
.image-gallery img:hover {
transform: scale(1.1);
border-color: #333;
}
p {
margin: 10px 0;
font-size: 1.1em; /* Slightly larger text */
color: black; /* Darker text for readability */
line-height: 1.8; /* Better spacing between lines */
text-align: justify; /* Neater alignment */
}
p:first-letter {
font-size: 1.5em;
font-weight: bold;
color: #555;
}
</style>
</head>
<body>
<!-- Home Section -->
<section id="home">
<div class="container">
<h2>BHAGYA RESTAURENTS</h2>
<hr>
<b>A restaurant is a place where food and drinks are prepared and served to customers. It offers a variety of dining experiences, from casual to fine dining.</b>
<b>
This iconic restaurant is renowned for its exceptional fine dining experience and innovative approach to haute cuisine.
Located in a beautiful, upscale area, it has earned a reputation as one of the top dining destinations in the world.
The establishment is known for its elegant yet welcoming ambiance, where classic design meets modern sophistication, offering a sense of intimacy and exclusivity to guests.
</b>
<b>
The restaurant’s menu is a celebration of local, seasonal ingredients, often highlighting fresh produce and delicacies sourced from nearby farms and fishermen.
With a focus on using the highest quality ingredients, the dishes are carefully crafted to showcase rich, complex flavors and textures.
</b>
<hr>
<h3>Some Pictures of the Restaurant</h3>
<hr>
<div class="image-gallery">
<img src="pic1.jpg" alt="Restaurant Image 1">
<img src="pic2.jpg" alt="Restaurant Image 2">
<img src="pic3.jpg" alt="Restaurant Image 3">
<img src="pic4.jpg" alt="Restaurant Image 4">
</div>
</div>
</section>
</body>
</html>