Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Blog page bottom of footer extra space and text remove #1993

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 8 additions & 64 deletions blog.html
Original file line number Diff line number Diff line change
Expand Up @@ -813,21 +813,6 @@ <h3>Follow Us</h3>
<p class="copyright-b">&copy; 2024 BuddyTrail. All rights reserved.</p>
</div>
</footer>


<!-- Deals and Offers Popup
<div id="dealsPopup" class="popup">
<div class="popup-content">
<span class="close-btn" id="closePopup">&times;</span>
<h2>Exclusive Deals and Offers!</h2>
<p>
Get the best deals on flights, hotels, and travel packages. Don't miss
out on our limited-time discounts. Plan your trip now!
</p>
<button onclick="document.getElementById('dealsPopup').style.display = 'none'; window.location.href='#deals'">
Check Out Deals
</button>
</div> -->
</div>
<!-- this script is for twitter icon starts -->
<script src="https://kit.fontawesome.com/856f4a44d7.js" crossorigin="anonymous"></script>
Expand Down Expand Up @@ -871,34 +856,9 @@ <h2>Exclusive Deals and Offers!</h2>
window.scrollTo({ top: 0, behavior: "smooth" }); // Smooth scroll to top
};
</script>
// <script>
// document.getElementById('contactForm').addEventListener('submit', function (e) {
// e.preventDefault();

// // Submit the form data using fetch
// fetch(this.action, {
// method: 'POST',
// body: new FormData(this),
// headers: {
// 'Accept': 'application/json'
// }
// }).then(response => {
// // Show the confirmation popup
// document.getElementById('confirmationPopup').style.display = 'block';
// // Reset the form
// this.reset();
// }).catch(error => {
// console.error('Error:', error);
// // Still show the confirmation popup even if there's an error
// document.getElementById('confirmationPopup').style.display = 'block';
// });
// });


// function closePopup() {
// document.getElementById('confirmationPopup').style.display = 'none';
// }
// </script>



<script>
document.getElementById('reviewForm').addEventListener('submit', function(event) {
event.preventDefault(); // Prevents form submission
Expand Down Expand Up @@ -1014,7 +974,7 @@ <h2>Exclusive Deals and Offers!</h2>
}

.custom-alert p {
/* white color text on black background will look nice */
/* white color text on black background will look nice */
color:white;
margin: 0;
line-height: 1.5;
Expand Down Expand Up @@ -1051,7 +1011,7 @@ <h2>Exclusive Deals and Offers!</h2>


<script>
main

// coordinates for the cursor :
const coords = { x: 0, y: 0 };
const circles = document.querySelectorAll(".circle");
Expand Down Expand Up @@ -1134,27 +1094,11 @@ <h2>Exclusive Deals and Offers!</h2>
animateCircles();
});

main

</script>

<body>
<div class="container">
<!-- Your existing content -->

<!-- Chatbot Icon -->
<div class="chatbot-icon" onclick="toggleChatbot()">
🗨️ <!-- You can replace this with an actual image/icon -->
</div>

<!-- Chatbot Iframe -->
<div class="chatbot-container" id="chatbotContainer">
<iframe src="https://www.chatbase.co/chatbot-iframe/GtcyNsebrd_nrDUEQz53T"
width="350"
height="500"
style="border:none;">
</iframe>
</div>
</div>


<!-- Scripts -->
<script src="script.js"></script>
Expand All @@ -1169,7 +1113,7 @@ <h2>Exclusive Deals and Offers!</h2>
}

</script>
<br /><br />

<link rel="stylesheet" href="visi.css">

<div class="visitor-counter">
Expand Down
Loading