function displayBankHolidayNotice() {
const notice = document.createElement(\\'div\\');
notice.innerHTML = "Do not Forget That Friday 18th April & Monday 21st April are Bank Holidays so prices are double rate!";
notice.style.position = \\'fixed\\';
notice.style.bottom = \\'10px\\';
notice.style.left = \\'10px\\';
notice.style.backgroundColor = \\'yellow\\';
notice.style.padding = \\'10px\\';
notice.style.zIndex = \\'1000\\'; // Ensure it\\'s on top of other elements
document.body.appendChild(notice);
}
displayBankHolidayNotice();