From 229f794dd9564eb81bc00b3c7963828f437e16d3 Mon Sep 17 00:00:00 2001 From: Deepika Sharma Date: Fri, 25 Oct 2024 21:10:49 +0530 Subject: [PATCH 01/38] Update F&Q.html Now the Toggle Button is functioning as per requirement. --- F&Q.html | 103 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 103 insertions(+) diff --git a/F&Q.html b/F&Q.html index 915239e2..7e6b5888 100644 --- a/F&Q.html +++ b/F&Q.html @@ -208,6 +208,49 @@ .btn-view-itinerary:hover { background-color: #0056b3; } + + body { + background-color: white; + color: black; + transition: background-color 0.3s, color 0.3s; +} + +body.dark-mode { + background-color: #121212; + color: #ffffff; +} + +header.dark-mode { + background-color: #1f1f1f; +} + +.mode-toggle { + cursor: pointer; + border: none; + background: transparent; + outline: none; + padding: 10px; +} + +.mode-toggle img { + width: 24px; + height: 24px; +} + +.navbar { + background-color: #f0f0f0; + transition: background-color 0.3s; +} + +body.dark-mode .navbar { + background-color: #333; +} + +body.dark-mode .navbar a:hover { + color: #4C51BF; + transform: translateY(-2px); +} + @@ -522,5 +565,65 @@

Suggestions/Questions

background-color: #ffe0b2; } + + + From c8008764e8d0464ea517d17e31b68c963e76e072 Mon Sep 17 00:00:00 2001 From: Deepika Sharma Date: Fri, 25 Oct 2024 21:29:17 +0530 Subject: [PATCH 02/38] Now the toggle button is properly responding. --- F&Q.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/F&Q.html b/F&Q.html index 7e6b5888..a108c0d8 100644 --- a/F&Q.html +++ b/F&Q.html @@ -209,7 +209,8 @@ background-color: #0056b3; } - body { +/* darkmode */ + body { background-color: white; color: black; transition: background-color 0.3s, color 0.3s; From 1ccff27d486ec916fa40b64f9c4f47a3db2595c9 Mon Sep 17 00:00:00 2001 From: Deepika Sharma Date: Sat, 26 Oct 2024 16:41:46 +0530 Subject: [PATCH 03/38] Added dark theme to Travel service page. Successfully added Dark theme to the Travel service page. --- service.html | 114 ++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 113 insertions(+), 1 deletion(-) diff --git a/service.html b/service.html index 91883fbf..45e844ca 100644 --- a/service.html +++ b/service.html @@ -6,6 +6,53 @@ Travel Services +
@@ -25,6 +72,12 @@

Travel Services

+
  • + +
  • @@ -215,5 +268,64 @@
    Follow Us
    + + - \ No newline at end of file + From a3544ae079168d9e65e2fde1a22f99c59d7a5858 Mon Sep 17 00:00:00 2001 From: biswa Date: Sat, 26 Oct 2024 17:16:30 +0530 Subject: [PATCH 04/38] Enhanced the footer of about page --- about.css | 123 ++++++++++++++++++++++++-- about.html | 254 ++++++++++++++++++++++++++++++----------------------- 2 files changed, 259 insertions(+), 118 deletions(-) diff --git a/about.css b/about.css index 48a79c86..eb5c38f9 100644 --- a/about.css +++ b/about.css @@ -73,6 +73,9 @@ nav { line-height: 1; } + + + .nav-links { list-style: none; display: flex; @@ -102,7 +105,10 @@ nav { .nav-link.active { color: #4C51BF; font-weight: bold; -} +} + + + .btn-primary { margin-right: -10rem; @@ -310,7 +316,7 @@ footer { font-size: 1.125rem; } -.social-icons { +/* .social-icons { display: flex; gap: 1rem; margin-top: 0.5rem; @@ -324,24 +330,81 @@ footer { .social-icons a:hover { color: #4C51BF; transform: translateY(-2px); +} */ + + + +.social-icons { + display: flex; + gap: 15px; /* Adjust spacing between icons */ + position: relative; /* Ensure the positioning context for the pseudo-elements */ } -.copyright { - text-align: center; - margin-top: 1.5rem; - padding-top: 1rem; - border-top: 1px solid rgba(255, 255, 255, 0.1); +.social-icons a { + display: inline-block; + transition: transform 0.3s ease, color 0.3s ease; + position: relative; + color: #000; /* Default color for the icons */ } +.social-icons a::before { + content: ''; + position: absolute; + top: 50%; + left: 50%; + width: 0; + height: 0; + border-radius: 50%; + background: rgba(0, 0, 255, 0.6); /* Blue background */ + transition: width 0.3s ease, height 0.3s ease, top 0.3s ease, left 0.3s ease; + z-index: -1; /* Send the background behind the icon */ +} +.social-icons a:hover::before { + width: 120%; /* Slightly larger than the icon for a better effect */ + height: 120%; /* Slightly larger than the icon */ + top: -10%; /* Adjust position to keep it centered */ + left: -10%; /* Adjust position to keep it centered */ +} +.social-icons a:hover { + transform: scale(1.2); + color: #fff; /* Change icon color on hover */ +} +.social-icons img { + width: 30px; /* Adjust size of the X logo */ + height: auto; /* Maintain aspect ratio */ + transition: transform 0.3s ease; +} +.social-icons img:hover { + transform: scale(1.2); +} +/* Optional: Additional hover effects for individual icons */ +.social-icons a.discord:hover::before { + background: linear-gradient(45deg, #7289da, #61dafb); /* Discord gradient */ +} +.social-icons a.github:hover::before { + background: linear-gradient(45deg, #333, #fff); /* GitHub gradient */ +} +.social-icons a.linkedin:hover::before { + background: linear-gradient(45deg, #0077b5, #fff); /* LinkedIn gradient */ +} +.social-icons a.twitter:hover::before { + background: linear-gradient(45deg, #1da1f2, #fff); /* Twitter gradient */ +} +.copyright { + text-align: center; + margin-top: 1.5rem; + padding-top: 1rem; + border-top: 1px solid rgba(255, 255, 255, 0.1); +} footer { width: 100%; @@ -470,6 +533,10 @@ form button .fas { background: #fff; margin-right: 15px; cursor: pointer; + + & :hover{ + background-color: #61dafb; + } } hr { @@ -511,6 +578,48 @@ hr { animation: moving 2s linear infinite; } + + +.footer-links { + list-style: none; /* Remove bullet points */ + padding: 0; /* Remove default padding */ +} + +.footer-links li { + + margin-right: 20px; /* Space between links */ +} + +.footer-links a { + text-decoration: none; /* Remove default underline */ + color: whitesmoke; + position: relative; + transition: color 0.3s ease; +} + +.footer-links a::after { + content: ''; + position: absolute; + left: 0; + bottom: -5px; + width: 100%; + height: 2px; + background: blue; + transform: scaleX(0); + transition: transform 0.3s ease; +} + +.footer-links a:hover::after { + transform: scaleX(1); /* Scale to full width on hover */ +} + +.footer-links a:hover { + color: blue; /* Change text color on hover */ +} + + + + @keyframes moving { 0% { diff --git a/about.html b/about.html index cd67eb4b..06c34200 100644 --- a/about.html +++ b/about.html @@ -8,115 +8,134 @@ - - - - -
    + + + + + +
    - -
    + +
    Ready to Explore the World...
    -
    - - + window.addEventListener('load', function () { + const preloader = document.getElementById('preloader'); + const content = document.getElementById('content'); + + // Set a small timeout for better user experience + setTimeout(function () { + // Hide preloader + preloader.style.opacity = '0'; + preloader.style.transition = 'opacity 1s ease-in-out'; + + // Show content after preloader fades out + setTimeout(function () { + preloader.style.display = 'none'; + content.style.display = 'block'; + content.classList.add('show'); // Trigger fade-in transition + }, 1000); // Match the transition duration + }, 2000); // Adjust to the length of your spinner animation + }); + +
    @@ -536,6 +555,16 @@

    PRIYA Ghosal

    /* Change text color on hover */ } + + .hover-color { + transition: color 0.3s ease; + /* Smooth transition for color change */ + } + + .hover-color:hover { + color: rgb(199, 59, 159); + /* Change color on hover */ + } -

    Welcome to BuddyTrail - your premier travel companion! Whether you're planning a family vacation +

    Welcome to BuddyTrail - your premier travel companion! Whether you're + planning a + family vacation or a getaway with friends, BuddyTrail is here to help you discover and explore incredible destinations. @@ -569,7 +600,7 @@

    +123 456 7890

    Links

    -
    From 95af361dc00b0d8f56e36a0af8c10587b3244eb6 Mon Sep 17 00:00:00 2001 From: Deepika Sharma Date: Sat, 26 Oct 2024 22:33:28 +0530 Subject: [PATCH 18/38] Added js to service page --- service.html | 57 ---------------------------------------------------- 1 file changed, 57 deletions(-) diff --git a/service.html b/service.html index 572e5946..589cb993 100644 --- a/service.html +++ b/service.html @@ -221,64 +221,7 @@
    Follow Us
    - + +
    +
      @@ -1691,6 +1691,7 @@

      Content

      width: 100%; /* Ensure full width inside the container */ border-radius: 8px; outline: none; + resize: vertical; } /* Header styling */ From d939979874f4d135728c7cfada4528efda7e4721 Mon Sep 17 00:00:00 2001 From: Irtesaam Date: Sun, 27 Oct 2024 07:02:32 +0530 Subject: [PATCH 22/38] added dark mode to book now page --- book.html | 899 +++++++++++++++++++++++++++--------------------------- 1 file changed, 446 insertions(+), 453 deletions(-) diff --git a/book.html b/book.html index c3a3bb81..03e806b4 100644 --- a/book.html +++ b/book.html @@ -1,502 +1,495 @@ - + + - + - + - + Book Now - BuddyTrail - - + + +
      - - - - + +
      -
      -

      Welcome to BuddyTrail

      -
      - -
      -

      Popular Destinations

      -
      -
      +

      Welcome to BuddyTrail

      +
      + +
      + +
      +
      -

      Dubai

      -
        -
      • Flight To Dubai
      • -
      • - Save 20% on round-trip flights to Dubai. Limited time offer! -
      • -
      -

      Price: β‚Ή20,000 β‚Ή25,000

      -
      -
      +

      Dubai

      +
        +
      • Flight To Dubai
      • +
      • + Save 20% on round-trip flights to Dubai. Limited time offer! +
      • +
      +

      Price: β‚Ή20,000 β‚Ή25,000

      +
      +
      -

      Goa

      -
        -
      • Luxury Stay in Goa
      • -
      • - Get 30% off on a 5-star hotel stay in Goa. Enjoy the best of - luxury at an affordable price! -
      • -
      -

      Price: β‚Ή10,500 β‚Ή15,000

      -
      -
      +

      Goa

      +
        +
      • Luxury Stay in Goa
      • +
      • + Get 30% off on a 5-star hotel stay in Goa. Enjoy the best of + luxury at an affordable price! +
      • +
      +

      Price: β‚Ή10,500 β‚Ή15,000

      +
      +
      -

      Kerala

      -
        -
      • Kerala Backwaters Package
      • -
      • - Experience the serene beauty of Kerala's backwaters with a - 4-day, 3-night package. All-inclusive deal! -
      • -
      -

      Price: β‚Ή10,500 β‚Ή15,000

      -
      -
      +

      Kerala

      +
        +
      • Kerala Backwaters Package
      • +
      • + Experience the serene beauty of Kerala's backwaters with a + 4-day, 3-night package. All-inclusive deal! +
      • +
      +

      Price: β‚Ή10,500 β‚Ή15,000

      +
      +
      -

      Paris

      -
        -
      • Paris Romantic Getaway
      • -
      • - Enjoy a romantic trip to Paris with your loved one. Special - package for couples! -
      • -
      -

      Price: β‚Ή10,500 β‚Ή15,000

      -
      -
      +

      Paris

      +
        +
      • Paris Romantic Getaway
      • +
      • + Enjoy a romantic trip to Paris with your loved one. Special + package for couples! +
      • +
      +

      Price: β‚Ή10,500 β‚Ή15,000

      +
      +
      -

      Bali

      -
        -
      • Adventure in Bali
      • -
      • - Get 30% off on a 5-star hotel stay in Goa. Enjoy the best of - luxury at an affordable price! -
      • -
      -

      Price: β‚Ή10,500 β‚Ή15,000

      -
      - -
      +

      Bali

      +
        +
      • Adventure in Bali
      • +
      • + Get 30% off on a 5-star hotel stay in Goa. Enjoy the best of + luxury at an affordable price! +
      • +
      +

      Price: β‚Ή10,500 β‚Ή15,000

      +
      + +
      -

      Switzerland

      -
        -
      • Adventure Switzerland
      • -
      • - Get 30% off on a 5-star hotel stay in Switzerland. Enjoy the - best of luxury at an affordable price! -
      • -
      -

      Price: β‚Ή10,500 β‚Ή15,000

      -
      - -
      +

      Switzerland

      +
        +
      • Adventure Switzerland
      • +
      • + Get 30% off on a 5-star hotel stay in Switzerland. Enjoy the + best of luxury at an affordable price! +
      • +
      +

      Price: β‚Ή10,500 β‚Ή15,000

      +
      + +
      -

      Italy

      -
        -
      • Italy Most beautiful countries in the world
      • -
      • - Enjoy a romantic trip to Italy with your loved one. Special - package for couples! -
      • -
      -

      Price: β‚Ή10,500 β‚Ή15,000

      -
      - -
      +

      Italy

      +
        +
      • Italy Most beautiful countries in the world
      • +
      • + Enjoy a romantic trip to Italy with your loved one. Special + package for couples! +
      • +
      +

      Price: β‚Ή10,500 β‚Ή15,000

      +
      + +
      -

      Greece

      -
        -
      • Greece has the longest coastline in Europe
      • -
      • - Get 30% off on a 5-star hotel stay in Switzerland. Enjoy the - best of luxury at an affordable price! -
      • + "> +

        Greece

        +
          +
        • Greece has the longest coastline in Europe
        • +
        • + Get 30% off on a 5-star hotel stay in Switzerland. Enjoy the + best of luxury at an affordable price! +
        • +
        +

        Price: β‚Ή10,500 β‚Ή15,000

        +
      +
      +
      + +
      +

      Why Travel with BuddyTrail?

      +
        +
      • Exclusive discounts and travel packages
      • +
      • 24/7 customer support for a hassle-free experience
      • +
      • Handpicked destinations and personalized itineraries
      • +
      • Safe and secure travel arrangements
      -

      Price: β‚Ή10,500 β‚Ή15,000

      -
      - - - -
      -

      Why Travel with BuddyTrail?

      -
        -
      • Exclusive discounts and travel packages
      • -
      • 24/7 customer support for a hassle-free experience
      • -
      • Handpicked destinations and personalized itineraries
      • -
      • Safe and secure travel arrangements
      • -
      -
      -

      Ready to embark on your next adventure?

      -

      Let BuddyTrail take you there!

      -
      -
      - -
      -

      Book Your Trip

      - -
      - - -
      -
      -
      - - -
      -
      -
      - - -
      -
      - - -
      +
      +

      Ready to embark on your next adventure?

      +

      Let BuddyTrail take you there!

      +
      + + +
      +

      Book Your Trip

      +
      +
      + + +
      +
      +
      + + +
      +
      +
      + + +
      +
      + +
      +
      -
      - // Validate Dates of Staying - const dates = document.getElementById("dates").value; - if (dates === "") { - document.getElementById("datesError").innerText = - "Please select your dates of stay."; - valid = false; - } +
      + + -
      - - + - + - From 407134e220253d514d3d2454e6de303422b5fec6 Mon Sep 17 00:00:00 2001 From: Irtesaam Date: Sun, 27 Oct 2024 08:14:18 +0530 Subject: [PATCH 23/38] fixed warnings & errors in console due to google API --- index.html | 49 +++++++++++++++++++------------------------------ script.js | 1 - 2 files changed, 19 insertions(+), 31 deletions(-) diff --git a/index.html b/index.html index 73e83eb3..ece0ae41 100644 --- a/index.html +++ b/index.html @@ -41,7 +41,7 @@ border-radius:8px; padding: 10px 8px 4px 8px; } - + /* Button Styling */ .btn { background-color: #007bff; /* Primary button color */ @@ -230,7 +230,7 @@ .card.inview { opacity: 1; transform: translateY(0); - + } .card.inview header1 { padding: 10px 8px 4px 8px; @@ -312,7 +312,7 @@ background-color: rgba(0, 0, 0, 0.9); z-index: 1000; } - + /* Wrapper for the logo and loader */ .loader-wrapper { position: relative; @@ -322,7 +322,7 @@ justify-content: center; align-items: center; } - + /* Logo Styling */ #logo { width: 140px; @@ -330,7 +330,7 @@ z-index: 10; /* Ensures logo stays above the loader */ animation: pulse 2s infinite ease-in-out; } - + /* Circular Loader surrounding the logo */ .loader-globe { position: absolute; @@ -342,7 +342,7 @@ border-right-color: white; animation: spin 2s linear infinite; } - + /* Loading Text */ #loading-text { margin-top: 20px; @@ -352,18 +352,18 @@ letter-spacing: 1px; animation: textGlow 2s ease-in-out infinite; } - + /* Keyframes Animations */ @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } - + @keyframes textGlow { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } } - + @keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } @@ -375,13 +375,13 @@ window.addEventListener('load', function() { const preloader = document.getElementById('preloader'); const content = document.getElementById('content'); - + // Set a small timeout for better user experience setTimeout(function() { // Hide preloader preloader.style.opacity = '0'; preloader.style.transition = 'opacity 1s ease-in-out'; - + // Show content after preloader fades out setTimeout(function() { preloader.style.display = 'none'; @@ -390,7 +390,7 @@ }, 1000); // Match the transition duration }, 2000); // Adjust to the length of your spinner animation }); - + @@ -2140,16 +2140,16 @@

      Share Your Experiences

      - + + @@ -1487,58 +1487,117 @@

      Book a Cab or Auto

      -
      -

      Personalized Recommendations

      -

      - We’ve picked these destinations, hotels, and activities just for you, - based on your preferences. -

      + + + +#recommendations h2 { + text-align: center; + color: #2c2b2b; + font-size: 5rem; /* Increased from 4rem */ + margin-bottom: 40px; /* Increased margin */ + font-weight: bold; +} +/* Recommendations List */ +.recommendation-list { + display: flex; + justify-content: space-between; + gap: 40px; /* Increased gap */ + flex-wrap: wrap; +} +/* Recommendation Item */ +.recommendation-item { + background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%); + border-radius: 15px; + box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); + padding: 35px; /* Increased padding */ + flex: 1 1 calc(33.333% - 40px); + transition: transform 0.4s ease, box-shadow 0.4s ease; + cursor: pointer; + height: 450px; /* Increased height */ + position: relative; + display: flex; + flex-direction: column; +} +.recommendation-item:nth-child(2) { + background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%); +} + +.recommendation-item:nth-child(3) { + background: linear-gradient(135deg, #d4fc79 0%, #96e6a1 100%); +} + +/* Content Container */ +.header1, .header2 { + display: flex; + flex-direction: column; + height: 100%; + align-items: center; + text-align: center; +} + +/* Hover Effects */ +.recommendation-item:hover { + transform: scale(1.08); + box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2); +} + +.recommendation-item h3 { + color: #1e293b; + font-size: 3.5rem; /* Increased from 2.5rem */ + margin-bottom: 25px; /* Increased margin */ + width: 100%; + font-weight: bold; + line-height: 1.2; /* Added for better readability */ +} + +.recommendation-item p { + color: #555555; + font-size: 2rem; /* Increased from 1.5rem */ + margin-bottom: 30px; + flex-grow: 1; + width: 100%; + line-height: 1.5; /* Added for better readability */ +} + +/* Buttons Styling */ +.recommendation-item button { + background-color: #3b82f6; + color: white; + padding: 16px 35px; /* Increased padding */ + border: none; + border-radius: 8px; + cursor: pointer; + transition: background-color 0.3s ease, transform 0.3s ease; + font-size: 2rem; /* Increased from 1.5rem */ + margin-top: auto; + display: block; + margin-left: auto; + margin-right: auto; + font-weight: bold; +} + +.recommendation-item button:hover { + background-color: #1e40af; + transform: translateY(-5px); +} + +/* Section Responsiveness */ +@media (max-width: 1200px) { + #recommendations h2 { + font-size: 4rem; + } + + .recommendation-item h3 { + font-size: 3rem; + } + + .recommendation-item p { + font-size: 1.8rem; + } + + .recommendation-item button { + font-size: 1.8rem; + } +} + +@media (max-width: 768px) { + .recommendation-list { + flex-direction: column; + } + + .recommendation-item { + margin-bottom: 30px; + height: auto; + min-height: 400px; + } + + #recommendations h2 { + font-size: 3.5rem; + } + + .recommendation-item h3 { + font-size: 2.8rem; + } + + .recommendation-item p { + font-size: 1.6rem; + } + + .recommendation-item button { + font-size: 1.6rem; + padding: 14px 30px; + } +} + + +
      +

      Personalized Recommendations

      +

      + We've picked these destinations, hotels, and activities just for you, + based on your preferences. +

      + +
      +
      +
      +

      Beach Resort in Goa

      +

      + Based on your love for sunny destinations, we recommend this + beachfront resort in Goa for a perfect getaway. +

      + +
      +
      + +
      +
      +

      Cultural Tour in Rajasthan

      +

      + Explore the rich cultural heritage of Rajasthan. This tour is + highly recommended based on your interest in historical places. +

      + +
      +
      + +
      +
      +

      Adventure Trek in Himachal

      +

      + For the adventure lover in you, we recommend a thrilling trek in + the mountains of Himachal Pradesh. +

      + +
      +
      +
      +

      Emergency SOS

      From 41254e7baebcaff87a4a7cf1cd9eb7e1c313900b Mon Sep 17 00:00:00 2001 From: Neeru <161798182+neeru24@users.noreply.github.com> Date: Sun, 27 Oct 2024 22:52:00 +0530 Subject: [PATCH 29/38] Update README.md --- README.md | 38 ++++++++++++++++++++++++++------------ 1 file changed, 26 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 4646dd7c..f85fc949 100644 --- a/README.md +++ b/README.md @@ -160,18 +160,32 @@ All responses are in JSON format. Ensure to handle errors appropriately. Join the list. **We are waiting**
      Here's how you can contribute to the repository: -1. Fork this Repository 🍴 -2. Clone to your local machine 🧩 using: - git clone https://github.com/Your-Username/BuddyTrail.git -3. Create a new branch: - git branch -c "Feature-Name" -4. Navigate to the branch: - git checkout Feature-Name -5. Add changes and Commit: - git commit -m "Add Changes message" -6. Push to the branch: - git push origin Feature-Name -7. Submit Pull Request +1. **Fork this Repository** 🍴 +2. **Clone to your local machine** 🧩 using: +```bash +git clone https://github.com/Your-Username/BuddyTrail.git +``` +3. **Create a new branch**: +```bash +git branch -c "Feature-Name" +``` + +4. **Navigate to the branch**: +```bash +git checkout Feature-Name +``` + +5. **Add changes and Commit**: +```bash +git commit -m "Add Changes message" +``` + +6. **Push to the branch**: +```bash +git push origin Feature-Name +``` + +7. **Submit Pull Request** We welcome all contributions to improve **BuddyTrail**! If you would like to contribute, please follow the [Contributing.md](./Contributing.md) for more details on how to get started. From 82be445eea706222fb226afbf6f2bf5a972a2861 Mon Sep 17 00:00:00 2001 From: sheezah Date: Sun, 27 Oct 2024 23:15:47 +0530 Subject: [PATCH 30/38] resolve conflict --- index.html | 289 ++++++++++++++++++++++++++++++++++++----------------- 1 file changed, 196 insertions(+), 93 deletions(-) diff --git a/index.html b/index.html index 012fd72f..3cd0b582 100644 --- a/index.html +++ b/index.html @@ -1488,101 +1488,204 @@

      Book a Cab or Auto

      -
      -

      Personalized Recommendations

      -

      - We’ve picked these destinations, hotels, and activities just for you, - based on your preferences. -

      - -
      - -
      -
      -

      Beach Resort in Goa

      -

      - Based on your love for sunny destinations, we recommend this - beachfront resort in Goa for a perfect getaway. -

      - -
      - -
      -
      -

      Cultural Tour in Rajasthan

      -

      - Explore the rich cultural heritage of Rajasthan. This tour is - highly recommended based on your interest in historical places. -

      - -
      - -
      -
      -

      Adventure Trek in Himachal

      -

      - For the adventure lover in you, we recommend a thrilling trek in - the mountains of Himachal Pradesh. -

      - -
      -
      -
      - + +
      +

      Personalized Recommendations

      +

      + We've picked these destinations, hotels, and activities just for you, + based on your preferences. +

      + +
      +
      +
      +

      Beach Resort in Goa

      +

      + Based on your love for sunny destinations, we recommend this + beachfront resort in Goa for a perfect getaway. +

      + +
      +
      + +
      +
      +

      Cultural Tour in Rajasthan

      +

      + Explore the rich cultural heritage of Rajasthan. This tour is + highly recommended based on your interest in historical places. +

      + +
      +
      + +
      +
      +

      Adventure Trek in Himachal

      +

      + For the adventure lover in you, we recommend a thrilling trek in + the mountains of Himachal Pradesh. +

      + +
      +
      +
      +
      /* Content Container */ .header1, .header2 { display: flex; From a5ac10ed303255668a8b281c4b51a477e61bf6fb Mon Sep 17 00:00:00 2001 From: Adarsh-Chaubey03 Date: Mon, 28 Oct 2024 11:14:59 +0530 Subject: [PATCH 31/38] added footer to disclaimer page. --- disclaimer.html | 55 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) diff --git a/disclaimer.html b/disclaimer.html index dd689c74..b900df73 100644 --- a/disclaimer.html +++ b/disclaimer.html @@ -284,6 +284,61 @@

      6. Contact Us

      Phone: +123 456 7890

      + - -