<div class="notification">
<span class="close-btn">×</span>
<p>Важное уведомление! Не пропустите акцию.</p>
</div>.notification {
position: relative;
background: #ffeb3b;
padding: 15px;
border: 1px solid #ffc107;
border-radius: 5px;
margin: 20px;
}
.close-btn {
position: absolute;
top: 5px;
right: 10px;
cursor: pointer;
font-size: 20px;
color: #666;
}
.close-btn:hover {
color: #000;
}