-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
76 lines (74 loc) · 2.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./CSS/style.css" />
<link rel="shortcut icon" href="./IMG/favicon.ico" type="image/x-icon">
<script
src="https://kit.fontawesome.com/809b27f811.js"
crossorigin="anonymous"
></script>
<title>TRAVEL WEBSITE | ABOUT PAGE</title>
</head>
<body>
<nav class="navbar bg-dark">
<div class="container">
<h1 class="logo lg-heading logo-color">MOR CG</h1>
<ul class="nav-items">
<li class="nav-item"><a href="./index.html">Home</a></li>
<li class="nav-item"><a href="./about.html">About</a></li>
<li class="nav-item"><a href="./contact.html">Contact</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-gray">Welcome to our travel page! We're passionate about showcasing the beauty and culture of Chhattisgarh. Join us on a journey of exploration and discovery.</p>
<div class="about-wrapper">
<div class="left">
<ul>
<li>Cultural Diversity Unveiled</li>
<li>Adventure Awaits, Explore Now</li>
<li>Budget-Friendly Travel Options</li>
</ul>
</div>
<div class="right">
<ul>
<li>Rich Heritage, Live Experiences</li>
<li>Nature's Beauty Beckons</li>
<li>Gastronomic Delights Await</li>
</ul>
</div>
</div>
<div class="counts">
<div class="count-item count-item1">
<span>3000+</span>
<p>Travelled</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>Guides</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>