276 P html

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 3

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>HTML + CSS</title>
<link rel="stylesheet" href="styles.css" />
</head>
<style>
h1 {
background-color: cornflowerblue;
color: aliceblue;
text-align: center;
border-radius: 4px;
padding: 4px;
margin: 0;
}
ul {
list-style-type: none;
background-color: hsl(208, 88%, 80%);
color: black;
position: fixed;
overflow: hidden;
margin: 0;
padding: 0;
position: sticky;
top: auto;
}
li {
float: left;
border-right: 1px solid #bbb;
padding: 20px;
margin: auto;
width: 200px;
text-align: center;
}
a {
text-decoration: none;
}
#card1 {
border: 1px solid white;
border-radius: 4px;
box-shadow: 2px 2px 10px black;
}
.Book {
background-color: green;
border: 2px solid white;
border-bottom: 2px solid black;
border-right: 2px solid black;
color: aliceblue;
width: 250px;
height: 50px;
margin-left: 250px;
padding: 10px;
border-radius: 4px;
}
.Book:hover{
background-color: yellow;
color: black;
border: 2px solid black;
}
</style>
<body>
<div id="container">
<div class="nav">
<h1>TRAVEL WITH US</h1>
<ul>
<li><a href="https://6y45rc.csb.app/">HOME</a></li>
<li><a href="https://433d4w.csb.app/">INDIA</a></li>
<li><a href="https://gd8prm.csb.app/">SOUDI</a></li>
<li><a href="https://4gj8x5.csb.app/">PARIS</a></li>
<li><a href="https://pcf4lv.csb.app/">U.S.A<a></li>
<li style="float: right"><a href="https://txsk8k.csb.app/?">LOG</a></li>
</ul>
</div>
<hr />
<div id="card1">
<img
src="/images/ind (1).jpg"
style="float: right; width: 50%; height: 250px; border-radius: 10px"
/>
<h2 style="font-family: Arial, Helvetica, sans-serif">India</h2>
<p style="margin: 120px 0px 120px 50px">
Book Your Travelling Tickets In Inadia
</p>
<a href="https://433d4w.csb.app/"><input type="button" value="See the
places list" class="Book" /></a>
</div>
<br />
<div id="card1">
<img
src="/images/soudi.jpg"
style="float: right; width: 50%; height: 250px; border-radius: 10px"
/>
<h2 style="font-family: Arial, Helvetica, sans-serif">Soudi</h2>
<p style="margin: 120px 0px 120px 50px">
Book Your Travelling Tickets In Soudi
</p>
<a href="https://gd8prm.csb.app/"><input type="button" value="See the
places list" class="Book" /></a>
</div>
<br />
<div id="card1">
<img
src="/images/parish.jpg"
style="float: right; width: 50%; height: 250px; border-radius: 10px"
/>
<h2 style="font-family: Arial, Helvetica, sans-serif">Parish</h2>
<p style="margin: 120px 0px 120px 50px">
Book Your Travelling Tickets In Parish
</p>
<a href="https://4gj8x5.csb.app/"><input type="button" value="See the
places list" class="Book" /></a>
</div>
<br />
<div id="card1">
<img
src="/images/usa.jpg"
style="float: right; width: 50%; height: 250px; border-radius: 10px"
/>
<h2 style="font-family: Arial, Helvetica, sans-serif">U.S.A</h2>
<p style="margin: 120px 0px 120px 50px">
Book Your Travelling Tickets In U.S.A
</p>
<a href="https://pcf4lv.csb.app/"> <input type="button" value="See
the places list" class="Book" /><a>
</div>
</div>
</body>
</html>

You might also like