-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome_page.php
More file actions
165 lines (145 loc) · 6.19 KB
/
home_page.php
File metadata and controls
165 lines (145 loc) · 6.19 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Indore Navigation</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=YOUR_GOOGLE_MAPS_API_KEY&callback=initMap" async defer></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<!-- Optional: FontAwesome for Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<style>
/* Custom styling for enhanced visuals */
.hero {
background: url('Assets/indore_background.jpg') no-repeat center center;
background-size: cover;
height: 70vh;
display: flex;
align-items: center;
justify-content: center;
color: white;
text-align: center;
position: relative;
}
.hero-overlay {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: rgba(0, 0, 0, 0.6); /* Dark overlay for readability */
}
.hero-content {
position: relative;
z-index: 1;
}
.card-img-top {
height: 200px;
object-fit: cover;
}
.icon-box i {
font-size: 2.5rem;
color: #007bff;
}
.icon-box {
text-align: center;
margin-bottom: 30px;
}
.icon-box h4 {
margin-top: 15px;
font-weight: bold;
}
</style>
</head>
<body>
<?php require('navbar.php'); ?>
</head>
<body>
<!-- Hero Section -->
<section class="hero">
<div class="hero-overlay"></div>
<div class="hero-content">
<h1 class="display-4">Explore the Heart of Indore</h1>
<p class="lead">Discover historical landmarks, top restaurants, and much more.</p>
<a href="#" class="btn btn-primary btn-lg mt-3">Learn More</a>
</div>
</section>
<!-- Main Content Section -->
<div class="container my-5">
<!-- Introduction Row -->
<div class="row text-center">
<div class="col">
<h2 class="display-5">Why Choose Us?</h2>
<p class="lead">Indore Navigator helps you explore the best the city has to offer!</p>
</div>
</div>
<!-- Feature Icons Row -->
<div class="row text-center mt-5">
<div class="col-md-4 icon-box">
<i class="fas fa-map-marker-alt"></i>
<h4>Navigate Easily</h4>
<p>Our accurate navigation helps you find the best routes in real time.</p>
</div>
<div class="col-md-4 icon-box">
<i class="fas fa-utensils"></i>
<h4>Top Restaurants</h4>
<p>Discover local and international cuisines at top-rated eateries.</p>
</div>
<div class="col-md-4 icon-box">
<i class="fas fa-hotel"></i>
<h4>Best Hotels</h4>
<p>Find affordable and luxury hotels for your stay in Indore.</p>
</div>
</div>
<!-- Cards Section for Featured Content -->
<div class="row mt-5">
<div class="col-md-4">
<div class="card">
<img src="Assets/landmark.jpg" class="card-img-top" alt="Landmark">
<div class="card-body">
<h5 class="card-title">Explore Historical Landmarks</h5>
<p class="card-text">Indore is home to many significant landmarks. Visit them today!</p>
<a href="#" class="btn btn-primary">Read More</a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card">
<img src="Assets/restaurant.jpg" class="card-img-top" alt="Restaurant">
<div class="card-body">
<h5 class="card-title">Dine at the Best Restaurants</h5>
<p class="card-text">From street food to fine dining, experience the best flavors of Indore.</p>
<a href="#" class="btn btn-primary">Read More</a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card">
<img src="Assets/hotel.jpg" class="card-img-top" alt="Hotel">
<div class="card-body">
<h5 class="card-title">Stay at Luxurious Hotels</h5>
<p class="card-text">Enjoy top-notch amenities and comfortable stays at Indore's best hotels.</p>
<a href="#" class="btn btn-primary">Read More</a>
</div>
</div>
</div>
</div>
</div>
<!-- Footer Section -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js"></script>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js"></script>
<!-- Bootstrap JS and dependencies -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<?php require('footer.php'); ?>
</body>
</html>