-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
164 lines (146 loc) · 5.2 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us</title>
<!-- Favicons -->
<link href="assets\img\favicon.png" rel="icon">
<!--About US CSS-->
<link rel="stylesheet" href="assets\css\about.css">
<link rel="stylesheet" href="assets\css\style.css">
<!--Font Awesom CSS-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
</head>
<body>
<!-- header section starts -->
<header>
<div>
<!-- <img src="D:\travel\images\Safar_Logo.png" height="50px" width= "80px"> -->
<a href="#" class="logo"><span>S</span>afar</a>
</div>
<div id="menu-bar" class="fas fa-bars"></div>
<nav class="navbar">
<a href="index.html">home</a>
<a href="index.html#services">services</a>
<a href="index.html#review">review</a>
<a href="booking.html">book</a>
<a href="about.html">about us</a>
<a href="index.html#contact">contact</a>
</nav>
<div class="icons">
<i class="fa fa-user" id="login-btn"></i>
</div>
<!--<form action="" class="search-bar-container">
<input type="search" id="search-bar" placeholder="search here...">
<label for="search-bar" class="fas fa-search"></label>
</form>-->
</header>
<!-- header section ends -->
<!-- about section ends -->
<section class="about" id="about">
<div class="image">
<img src="assets\img\au.png"/>
</div>
<div class="content">
<h2>About Us</h2>
<span><!-- line here --></span>
<p>
"Safar" is a very user friendly website which helps you explore your
travelling options widely and effectively. There is no denying that it
is pure fun. It helps you to grow as a human and understand yourself.
It also allows you to enjoy solitude and teaches one to respect all
cultures and societies.
</p>
<ul class="icons">
<li>
<a href="https://twitter.com/i/flow/login">
<i class="fa fa-twitter"></i
></a>
</li>
<li>
<a href="https://www.facebook.com/">
<i class="fa fa-facebook"></i
></a>
</li>
<li>
<a href="https://github.com/"> <i class="fa fa-github"></i></a>
</li>
<li>
<a
href="https://in.pinterest.com/search/pins/?rs=ac&len=2&q=car%20travel%20aesthetic&eq=car%20trave&etslf=6458&term_meta[]=car%7Cautocomplete%7C0&term_meta[]=travel%7Cautocomplete%7C0&term_meta[]=aesthetic%7Cautocomplete%7C0"
>
<i class="fa fa-pinterest"></i
></a>
</li>
</ul>
</div>
</section>
<!-- about section ends -->
<!-- footer section -->
<section class="footer">
<div class="box-container">
<div class="box">
<h3>about us</h3>
<p>
"Safar" is a very user friendly website which helps you explore your
travelling options widely and effectively. There is no denying that it
is pure fun. It helps you to grow as a human and understand yourself.
It also allows you to enjoy solitude and teaches one to respect all
cultures and societies.
</p>
</div>
<div class="box">
<h3>quick links</h3>
<a href="index.html">home</a>
<a href="index.html#services">services</a>
<a href="index.html#review">review</a>
<a href="booking.html">book</a>
<a href="about.html">About us</a>
<a href="index.html#contact">contact</a>
<a href="team.html">Team Safar</a>
</div>
<div class="box">
<h3>Contact Us</h3>
<div class="address">
<i class="icofont-google-map"></i>
<h4>Location:</h4>
<p>Banasthali, Jaipur
<br>
PINCODE : 304022
</p>
</div>
<div class="email">
<i class="icofont-envelope"></i>
<h4>Email:</h4>
<p style="text-transform: lowercase;">[email protected]</p>
</div>
<div class="phone">
<i class="icofont-phone"></i>
<h4>Call:</h4>
<p>+91 3040224030</p>
</div>
</div>
<div class="box">
<h3>Emergency Contact</h3>
<div class="email">
<i class="icofont-envelope"></i>
<h4>Email:</h4>
<p style="text-transform: lowercase;">[email protected]</p>
</div>
<div class="phone">
<i class="icofont-phone"></i>
<h4>Call:</h4>
<p>+91 4030223040</p>
<p>+91 4430223044</p>
<p>+91 4033223340</p>
</div>
</div>
</div>
<h1 class="credit"> Created by <span> Group 29 </span> | all rights reserved! </h1>
</section>
<!-- footer section ends -->
<!--JS-->
<script src="assets\js\script.js"></script>
</body>
</html>