-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
108 lines (104 loc) · 4.02 KB
/
index.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
<!DOCTYPE html>
<html>
<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/04e21f18ba.js" crossorigin="anonymous"></script>
<title>Home</title>
</head>
<body>
<header class="header">
<!-- <h1>Welcome to Travel Website</h1> -->
<nav class="navbar">
<div class="container">
<h1 class="logo lg-heading text-light">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>
<!-- <div class="container-content"> -->
<div class="header-content">
<h1 class="text-light lg-heading main-heading">TRAVEL THE WORLD</h1>
<p class="text-light">
TRAVEL THE WORLD, EXPERIENCE THE GREATNESS, IT'S THE BEST GIFT GIVEN BY NATURE
</p>
<a href="#explore-places" class="btn btn-primary text-red">EXPLORE PLACES </a>
</div>
</header>
<section class="showcase" id="explore-places">
<div class="container">
<div class="row row1">
<div class="img-box">
<img src="./img/showcase-photo3.jpg" title="find place" />
</div>
<div class="text-box">
<h2 class="lg-heading text-black">Deganvy, UK</h2>
<p class="text-gray">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Architecto consectetur,
ipsam eius autem quod tempora esse laboriosam. Blanditiis dolorem deserunt inventore,
veniam expedita voluptate fuga, dolorum temporibus consequatur, itaque accusantium?
</p>
<a href="./about.html" class="btn btn-secondary text-red">More</a>
</div>
</div>
<div class="row row2">
<div class="text-box">
<h2 class="lg-heading text-black">Desert, Egypt</h2>
<p class="text-gray">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Architecto consectetur,
ipsam eius autem quod tempora esse laboriosam. Blanditiis dolorem deserunt inventore,
veniam expedita voluptate fuga, dolorum temporibus consequatur, itaque accusantium?
</p>
<a href="./about.html" class="btn btn-secondary text-red">More</a>
</div>
<div class="img-box">
<img src="./img/showcase-photo1.jpg" title="find place" />
</div>
</div>
</div>
</section>
<section class="features">
<div class="container">
<div class="box-wrapper">
<div class="box box1">
<!-- icons using font awesome website -->
<i class="fa-solid fa-route fa-2x text-red"></i>
<h2 class="md-heading">Adventurous</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Totam ea maiores voluptates
distinctio quidem soluta itaque pariatur, reprehenderit ipsum id.
</p>
</div>
<div class="box box2">
<i class="fa-solid fa-strikethrough fa-2x"></i>
<h2 class="md-heading">Less price</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Totam ea maiores voluptates
distinctio quidem soluta itaque pariatur, reprehenderit ipsum id.
</p>
</div>
<div class="box box3">
<i class="fa-solid fa-user-check fa-2x text-red"></i>
<h2 class="md-heading">Experience</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Totam ea maiores voluptates
distinctio quidem soluta itaque pariatur, reprehenderit ipsum id.
</p>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="social-media-links">
<a href="#"><i class="fa-brands fa-facebook fa-3x text-light"></i></a>
<a href="#"><i class="fa-brands fa-twitter fa-3x text-light"></i></a>
<a href="#"><i class="fa-brands fa-instagram fa-3x text-light"></i></a>
</div>
<p>World Travel ©2022, All Rights Reserved</p>
</footer>
</body>
</html>