-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTravels.html
69 lines (69 loc) · 1.83 KB
/
Travels.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
<!DOCTYPE html>
<html>
<head>
<title>Travel Website</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="navbar">
<div class="logo">
<h1>Easy Travels</h1>
</div>
<div class="menu">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Places</a></li>
<li><a href="#">Discounts</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Booking</a></li>
</ul>
</div>
<div class="signup">
<a href="#">Sign Up</a>
</div>
</div>
<div class="body">
<div class="heading">
<h1>Travel With Us</h1>
<br>
<p>Connect with the world. Dive in to different cultures. Eat your heart out. Meet new people. Make a difference.With us, you’ll travel with friends, leave as family.</p>
<br>
<br>
<a href="#">Learn More</a>
</div>
<div class="tours">
<div class="places">
<h2>Shimla</h2>
<img src="Shimla.jpg" style="width: 300px; height: 250px; border-radius: 12px;">
<br>
<br>
<a href="#">Book Now</a>
</div>
<div class="places">
<h2>Goa</h2>
<img src="goa.jpg" style="width: 300px; height: 250px; border-radius: 12px;">
<br>
<br>
<a href="#">Book Now</a>
</div>
<div class="places">
<h2>Gujarat</h2>
<img src="SOU.jpg" style="width: 300px; height: 250px; border-radius: 12px;">
<br>
<br>
<a href="#">Book Now</a>
</div>
</div>
</div>
<div class="footer">
<a href="#">Copyright</a>
<a href="#">Terms and Conditions</a>
<a href="#">Privacy Policy</a>
<a href="#">Cookies</a>
<a href="#">Complaints</a>
</div>
</body>
</html>