-
Notifications
You must be signed in to change notification settings - Fork 1
/
about.html
68 lines (63 loc) · 2.97 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
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<title>Travel Website (Let's tour India)</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navbar bg-dark">
<div class="container">
<h4 class="logo lg-heading text-red">TRAVEL</h4>
<h3>Let's go</h3>
<ul class="nav-item">
<li class="nav-item"><a href="contact.html">CONTACT</a></li>
<li class="nav-item"><a href="about.html">ABOUT</a></li>
<li class="nav-item"><a href="index.html">HOME</a></li>
</ul>
</div>
</nav>
<section class="about">
<div class="container">
<h2 class="lg-heading text-black about-heading">About US</h2>
<p class="text-grey">We are the fastest and best growing company/transport in the field of travel and want to connect millions and number of excited people , who always ready to gain experiences.</p>
<div class="about-wrapper">
<div class="left">
<ul>
<li>New Destination</li>
<li>New Destination</li>
<li>New Destination</li>
<li>New Destination</li>
</ul></div>
<div class="right">
<ul>
<li>New Destination</li>
<li>New Destination</li>
<li>New Destination</li>
<li>New Destination</li>
</ul>
</div>
</div> <div class="counts">
<div class="count-item count-item1"><span>2500</span><p>Travller</p></div>
<div class="count-item count-item2"><span>500</span><p>Places</p></div>
<div class="count-item count-item3"><span>400</span><p>Guide</p></div>
<div class="count-item count-item4"><span>20</span><p>Sport</p></div>
</div>
<div class="cta-banner">
<div class="cta-banner-left">
<p class="cta-line">What are you waiting for , reach us right now</p>
</div>
<div class="cta-banner-right">
<a href="contact.html" class="btn-cta">CONTACT US</a>
</div>
</div>
</div>
</section>
</body>
</html>