Sở hữu ngay máy giữ xe thông minh giá chỉ từ 300k/tháng
Hãy xem ngay!
.notification-card {
background-color: #f9f9f9;
border: 1px solid #ccc;
padding: 20px;
border-radius: 5px;
width: 300px;
margin: 20px auto;
text-align: center;
}
.notification-card h2 {
font-size: 18px;
margin-bottom: 10px;
}
.notification-card p {
font-size: 14px;
margin-bottom: 20px;
}
.btn {
background-color: #007bff;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
.btn:hover {
background-color: #0056b3;
}
// JavaScript to handle button click
document.querySelector('.btn').addEventListener('click', function() {
alert('Button clicked!');
});