Preview:
const alertBox=document.querySelector('.alert-box');
const closeAlertBtn=document.querySelectorAll('.close-alert');
function closeAlert(event){
console.log(event.target.parentNode)
event.target.parentNode.style.display="none";
}
for(let i=0;i<closeAlertBtn.length;i++){ closeAlertBtn[i].addEventListener('click',closeAlert) } console.log(closeAlertBtn)
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter