#quick-exit {
position: fixed;
top: 10px;
right: 10px;
background-color: #c62828;
color: white;
padding: 10px 15px;
font-size: 16px;
border: none;
border-radius: 4px;
z-index: 9999;
cursor: pointer;
}
#quick-exit:hover {
background-color: #b71c1c;
}
Leave Site Quickly
document.getElementById("quick-exit").addEventListener("click", function () {
window.open("https://weather.com", "_blank");
window.loca