```html
/* Style for the ad container */
.adcontainer {
position: fixed;
bottom: 20px;
right: 20px;
width: 300px;
height: 250px;
backgroundcolor: f0f0f0;
border: 1px solid ccc;
borderradius: 8px;
boxshadow: 0 2px 5px rgba(0, 0, 0, 0.1);
overflow: hidden;
zindex: 9999;
}
/* Style for the close button */
.closebtn {
position: absolute;
top: 5px;
right: 5px;
cursor: pointer;
fontsize: 20px;
}
/* Style for the ad content */
.adcontent {
padding: 20px;
}
×
Your ad message goes here...
// Function to close the ad
function closeAd() {
var adContainer = document.querySelector('.adcontainer');
adContainer.style.display = 'none';
}