-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTourism Website
More file actions
105 lines (97 loc) · 2.8 KB
/
Tourism Website
File metadata and controls
105 lines (97 loc) · 2.8 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tourism Website</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
header {
background-color: #2c3e50;
color: white;
text-align: center;
padding: 20px;
}
nav {
background-color: #34495e;
overflow: hidden;
}
nav a {
float: left;
display: block;
color: white;
padding: 14px 20px;
text-align: center;
text-decoration: none;
}
nav a:hover {
background-color: #575757;
}
.container {
display: flex;
justify-content: space-around;
margin: 20px;
}
.destination {
background-color: white;
width: 30%;
margin: 10px;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
text-align: center;
}
.destination img {
width: 100%;
height: 200px; /* Ensures all images have the same height */
object-fit: cover; /* Ensures the images maintain aspect ratio while covering the specified dimensions */
border-radius: 8px;
}
footer {
background-color: #2c3e50;
color: white;
text-align: center;
padding: 10px;
position: fixed;
width: 100%;
bottom: 0;
}
</style>
</head>
<body>
<header>
<h1>Explore the World</h1>
<p>Discover amazing places with us</p>
</header>
<nav>
<a href="#">Home</a>
<a href="#">Destinations</a>
<a href="#">Contact</a>
</nav>
<div class="container">
<div class="destination">
<img src="your-image.jpg" alt="Japan">
<h2>Japan</h2>
<p>Experience the blend of traditional culture and modern technology in Japan.</p>
</div>
<div class="destination">
<img src="your-image.jpg" alt="India">
<h2>India</h2>
<p>Explore the vibrant traditions, ancient monuments, and diverse landscapes of India.</p>
</div>
<div class="destination">
<img src="your-image.jpg" alt="Sri Lanka">
<h2>Sri Lanka</h2>
<p>Discover the tropical beauty, tea plantations, and stunning beaches of Sri Lanka.</p>
</div>
</div>
<footer>
<p>© 2024 Explore the World. All rights reserved.</p>
</footer>
</body>
</html>