-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
83 lines (72 loc) · 3.09 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
<!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">
<script src="https://kit.fontawesome.com/8867491789.js" crossorigin="anonymous"></script>
<title>TRAVEL WEBSITE | WELCOME</title>
</head>
<body>
<nav class="navbar bg-dark">
<div class="container">
<h1 class="logo lg-heading text-light border">WT</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">hello, I am shivpratap, this is my first website. It was a wonderfull experians for me I used html and css to devlope this website. please tell me your own openion on my website that you like this or not? My website is too responsive if there is any bugs sorry ;) </p>
<div class="about-wrapper">
<div class="left">
<ul>
<li>less cost & and atractive price.</li>
<li>discount faslity.</li>
<li>costomer friendly.</li>
<li>no aditional charges.</li>
</ul>
</div>
<div class="right">
<ul>
<li>Best experians.</li>
<li>Best facilities.</li>
<li>best stratigies for travel.</li>
<li>Everywhere available.</li>
</ul>
</div>
</div>
<div class="counts">
<div class="count-item count-item1">
<span>2500</span>
<p>Travelled</p>
</div>
<div class="count-item count-item2">
<span>1000</span>
<p>places arount the world</p>
</div>
<div class="count-item count-item3">
<span>75</span>
<p>year old company</p>
</div>
<div class="count-item count-item4">
<span>500</span>
<p>Hotels around world</p>
</div>
</div>
<div class="cta-banner">
<div class="cta-banner-left">
<p class="cta-line" >If you are intrested in our facilities you can contact us?</p>
</div>
<div class="cta-banner-right">
<a href="./contact.html" class="btn-cta">contact us</a>
</div>
</div>
</div>
</section>
</body>
</html>