forked from Lakshita018/Web-Vida-Sample-Domains
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtravel.html
156 lines (136 loc) · 3.32 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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Local Travel Agency</title>
</head>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background-color: black;
color: white;
padding: 10px 0;
text-align: center;
}
.logo {
font-size: 24px;
font-weight: bold;
}
nav ul {
list-style-type: none;
padding: 0;
}
nav ul li {
display: inline;
margin: 0 15px;
}
nav ul li a {
color: white;
text-decoration: none;
}
.hero h1 {
font-size: 48px;
text-align: center;
}
.hero p {
font-size: 24px;
text-align: center;
}
main {
padding: 20px;
}
section {
background-color: white;
margin: 10px 0;
padding: 15px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.destination-container {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.destination {
flex: 1;
}
.footer {
background-color:;
color: #fff;
text-align: center;
padding: 10px;
}
.logo-container {
position: absolute;
top: 20px;
left: 20px;
}
.logo {
width: auto;
height: 80px;
border-radius: 8px;
transition: transform 0.3s;
}
</style>
<body>
<header>
<div class="logo-container">
<img src="ISTE-logo.png" alt="Logo" class="logo">
</div>
<div class="logo">Local Travel Agency</div>
<nav>
<ul>
<li><a href="#services">Services</a></li>
<li><a href="#destinations">Destinations</a></li>
<li><a href="#contact">Contact Us</a></li>
</ul>
</nav>
</header>
<section class="hero">
<h1>Explore the World with Us</h1>
<p>Your adventure starts here!</p>
</section>
<main>
<section id="services">
<h2>Our Services</h2>
</section>
<section id="destinations">
<h2>Popular Destinations</h2>
<div class="destination-container">
<div class="destination">
<img src="https://via.placeholder.com/300x200?text=Paris" alt="Paris">
<h3>Paris</h3>
<p>The city of lights and love.</p>
</div>
<div class="destination">
<img src="https://via.placeholder.com/300x200?text=New+York" alt="New York">
<h3>New York</h3>
<p>The city that never sleeps.</p>
</div>
<div class="destination">
<img src="https://via.placeholder.com/300x200?text=Tokyo" alt="Tokyo">
<h3>Tokyo</h3>
<p>A blend of tradition and modernity.</p>
</div>
<div class="destination">
<img src="https://via.placeholder.com/300x200?text=Rome" alt="Rome">
<h3>Rome</h3>
<p>The eternal city with rich history.</p>
</div>
</div>
</section>
<section id="contact">
<h2>Contact Us</h2>
</section>
</main>
<footer>
<p>© 2025 Travel Agency. All rights reserved.</p>
</footer>
</body>
</html>