-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtravel.html
53 lines (47 loc) · 1.42 KB
/
travel.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>places</title>
<link rel="stylesheet" href="travel.css" />
</head>
<body>
<div class="container">
<div class="runway"></div>
<img src="images/airplane.png" alt="" class="airplane" />
</div>
<div class="containerss">
<nav>
<img src="images/logo.png" alt="logo" class="logo">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">Travel Guide</a></li>
<li><a href="tour.html">ٖTours</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</nav>
</div>
<div class="content">
<div class="hero-heading">
<h2>Search and Book Flights</h2>
</div>
<div class="row">
<div class="col destinations">
<h3>Major international destinations include:</h3>
<ul>
<li>Dubai</li>
<li>Turkey</li>
<li>Maldives</li>
<li>United Kingdom</li>
</ul>
</div>
<div class="col banner">
<img src="images/airline-discount(2).jpg" alt="airoplane" />
</div>
</div>
<button class="btn"><a href="booking.html">Book Now</a></button>
</div>
</body>
</html>