-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
154 lines (115 loc) · 5.71 KB
/
about.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>home</title>
<!-- swiper css link -->
<link rel="stylesheet" href="https://unpkg.com/swiper@7/swiper-bundle.min.css" />
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- custom css file link -->
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<!-- header section starts -->
<section class="header">
<a href="home.php" class="logo" style> car rent </a>
<nav class="navbar">
<a href="home.php">home</a>
<a href="about.php">about</a>
<a href="package.php">package</a>
<a href="book.php">book</a>
</nav>
<div id="menu-btn" class="fas fa-bars"></div>
</section>
<!-- header section ends -->
<!-- home section starts -->
<section class="home">
<div class="swiper home-slider">
<div class="swiper-wrapper">
<div class="swiper-slide slide" style="background:url(image/cdb19df5-76b6-4c60-b1e8-d9a404983f48.jpg) no-repeat">
<div class="content">
<span>explore, discover, travel</span>
<h3>travel around nepal</h3>
<a href="package.php" class="btn">discover more</a>
</div>
</div>
<div class="swiper-slide slide" style="background:url(image/home2.jpg) no-repeat">
<div class="content">
<span>explore, discover, travel</span>
<h3>travel around nepal</h3>
<a href="package.php" class="btn">discover more</a>
</div>
</div>
<div class="swiper-slide slide" style="background:url(image/home3.jpg) no-repeat">
<div class="content">
<span>explore, discover, travel</span>
<h3>make your tour worthwhile</h3>
<a href="package.php" class="btn">discover more</a>
</div>
</div>
</div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
</div>
</section>
<!-- home section ends -->
<!-- Car Rental Feature -->
<section class="feature">
<div class="carfeature">
<span > About US</span>
<p> A primary goal of our car rental in Nepal is to achieve the highest standards of quality service without any compromise.
Our objective is to continually improve the car rental services in Nepal, while offering our customers a cost effective services.
Quality car rental service performance is one of the cornerstones of our company culture, and is considered a personal responsibility of
all employees to maintain quality at the highest level. Our client feels our service with hassle-free experience. We offer the best price
for the online booking customer. Our Price is most competitive based on “traveling with comfort”. Our drivers highly experienced and well-trained
with support staff to care your baggage and required assistance. In addition we mostly select local driver because he can helps you to observe and see
the local values and culture of the commitment to diversity while traveling with your family or friends or individual.
We offer luxury, deluxe, and cheap & budget car rental services in Nepal for a few hours to few weekly. You can enjoy our different types of vehicles rental service
like car, jeep, van, bus, coaster, 4WD and minibus. Our car rental service is available in Kathmandu, Pokhara, Chitwan, Lumbini, Nagarkot, Bardia and other cities of Nepal. <br> <br> </p>
<p> <span>Car Rental Company/ Agency registration and approval:</span> <br>
We are recognized by government of Nepal as a travel agency. We are associated with different association of travel and tourism industries and bodies (national and international) <br>
<span>Service: </span> <br>
Quality service is our main motto so we always try to provide quality and memorable trips. <br>
<span>Price:</span> <br>
Our price is very reasonable considering the quality service.
Social responsibility: <br>
We allocate certain amount for social welfare.</p>
</div>
</section>
<!-- footer section starts -->
<section class="footer">
<div class="box-container">
<div class="box">
<h3>quick links</h3>
<a href="home.php"><i class="fas fa-angle-right"></i> home</a>
<a href="about.php"><i class="fas fa-angle-right"> </i>about</a>
<a href="package.php"><i class="fas fa-angle-right"> </i>package</a>
<a href="book.php"><i class="fas fa-angle-right"> </i>book</a>
</div>
<div class="box">
<h3>contact info</h3>
<a href="#"> <i class="fas fa-phone"></i> +977 9803513457 </a>
<a href="#"> <i class="fas fa-phone"></i> +977 9886161945 </a>
<a href="#"> <i class="fas fa-envelope"></i> carrentnepal@gmail.com </a>
<a href="#"> <i class="fas fa-map"></i> Babarmal,kathmandu </a>
</div>
<div class="box">
<h3>follow us</h3>
<a href="#"> <i class="fab fa-facebook-f"></i> facebook </a>
<a href="#"> <i class="fab fa-twitter"></i> twitter </a>
<a href="#"> <i class="fab fa-instagram"></i> instagram </a>
<a href="#"> <i class="fab fa-linkedin"></i> linkedin </a>
</div>
</div>
</section>
<!-- footer section ends -->
<!-- swiper js link -->
<script src="https://unpkg.com/swiper@7/swiper-bundle.min.js"></script>
<!-- custom js file link -->
<script src="js/script.js"></script>
</body>
</html>