-
Notifications
You must be signed in to change notification settings - Fork 598
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
171 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,153 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Hotel Booking Form</title> | ||
<style> | ||
body { | ||
font-family: Arial, sans-serif; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
.h2{ | ||
align-items: center; | ||
} | ||
header { | ||
background-color: #333; | ||
color: white; | ||
padding: 10px 0; | ||
} | ||
header h1 { | ||
text-align: center; | ||
margin: 0; | ||
} | ||
section#ebooks { | ||
padding: 20px; | ||
background-color: #f4f4f4; | ||
} | ||
.ebook-list { | ||
display: flex; | ||
flex-wrap: wrap; | ||
justify-content: center; | ||
} | ||
.ebook-item { | ||
background-color: white; | ||
border: 1px solid #ddd; | ||
border-radius: 5px; | ||
padding: 15px; | ||
margin: 10px; | ||
width: 200px; | ||
text-align: center; | ||
} | ||
.ebook-item h3 { | ||
margin: 0 0 10px; | ||
} | ||
.ebook-item a { | ||
color: #333; | ||
text-decoration: none; | ||
font-weight: bold; | ||
} | ||
.ebook-item a:hover { | ||
text-decoration: underline; | ||
} | ||
.ebook-item img { | ||
width: 100px; /* Set the width of the images */ | ||
height: 150px; /* Set the height of the images */ | ||
border-radius: 5px; | ||
margin-bottom: 10px; | ||
object-fit: cover; | ||
} | ||
footer { | ||
background-color: #333; | ||
color: white; | ||
text-align: center; | ||
padding: 10px 0; | ||
position: fixed; | ||
bottom: 0; | ||
width: 100%; | ||
} | ||
.home-button { | ||
position: absolute; | ||
top: 20px; | ||
left: 20px; | ||
background-color: #f60303; | ||
color: white; | ||
padding: 10px 20px; | ||
border: none; | ||
border-radius: 4px; | ||
cursor: pointer; | ||
font-size: 16px; | ||
text-decoration: none; | ||
} | ||
|
||
.home-button:hover { | ||
background-color: #f2444d; | ||
color: rgb(8, 6, 6); | ||
border: 1px solid black; | ||
box-shadow: #070505; | ||
box-shadow: 0 0 10px rgba(7, 6, 13, 0.9); | ||
} | ||
|
||
@media (max-width: 768px) { | ||
.flex-item { | ||
flex: 1 1 100%; | ||
margin-right: 0; | ||
} | ||
|
||
input[type="submit"], | ||
.btn-book { | ||
margin-left: 0; | ||
width: 100%; | ||
text-align: center; | ||
} | ||
} | ||
</style> | ||
|
||
</head> | ||
<body> | ||
<a href="index.html" class="home-button">Home</a> | ||
<header> | ||
<h1>Welcome to Your Travel Companion</h1> | ||
<nav> | ||
<ul> | ||
|
||
</ul> | ||
</nav> | ||
</header> | ||
|
||
<section id="ebooks"> | ||
<h2 style="font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: #f60303;align-items: center;">E-books for Your Journey</h2> | ||
<div class="ebook-list"> | ||
<div class="ebook-item"> | ||
<img src="https://bookbins.in/wp-content/uploads/2024/04/The-Alchemist-Paulo-Coelho-Buy-Online-Bookbins-1.png" alt="Book Cover 1"> | ||
<h3 style="color: green;">Alchemist</h3> | ||
<p>Author: Paulo Coelho</p> | ||
<a href="https://ia801006.us.archive.org/13/items/OceanofPDF.comTheAlchemist/_OceanofPDF.com_The_Alchemist.pdf" target="_blank">Read Now</a> | ||
</div> | ||
<div class="ebook-item"> | ||
<img src="https://i1.sndcdn.com/artworks-qIxaDJ3y5rLvO2ct-iSGLpQ-t500x500.jpg" alt="Book Cover 1"> | ||
<h3 style="color: rgb(152, 9, 208);">Eat, pray, love</h3> | ||
<p>Author: Elizabeth Gilbert</p> | ||
<a href="https://d-pdf.com/book/1880/read" target="_blank">Read Now</a> | ||
</div> | ||
<div class="ebook-item"> | ||
<img src="https://therustyquill.wordpress.com/wp-content/uploads/2013/11/kerouac-on-the-road-611x940.jpg" alt="Book Cover 1"> | ||
<h3 style="color: rgb(25, 6, 143);">On the Road</h3> | ||
<p>Author: Jack Kerouac </p> | ||
<a href="https://therustyquill.wordpress.com/wp-content/uploads/2013/11/jack-kerouac-on-the-road.pdf" target="_blank">Read Now</a> | ||
</div> | ||
<div class="ebook-item"> | ||
<img src="https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1579036753i/77203.jpg" alt="Book Cover 1"> | ||
<h3 style="color: rgb(152, 93, 3);">THE KITE RUNNER </h3> | ||
<p>Author: KHALED HOSSEINI </p> | ||
<a href="https://mrsmeganparrish.weebly.com/uploads/3/8/0/5/38056115/the_kite_runner.pdf" target="_blank">Read Now</a> | ||
</div> | ||
<!-- Add more e-books as needed --> | ||
</div> | ||
</section> | ||
|
||
|
||
|
||
</body> | ||
</html> |