Ramadan Mubarak!
May Allah bless you and your family with peace, happiness, and prosperity during this holy month.
#ramadan-mubarak {
text-align: center;
padding: 20px;
background-color: #F4D03F;
color: #fff;
font-family: Arial, sans-serif;
}
h1 {
font-size: 36px;
font-weight: bold;
margin-bottom: 10px;
}
p {
font-size: 20px;
margin-bottom: 0;
}
const ramadanMubarak = document.getElementById('ramadan-mubarak');
const currentDate = new Date();
const ramadanStart = new Date('2023-04-02');
const ramadanEnd = new Date('2023-05-01');
if (currentDate >= ramadanStart && currentDate <= ramadanEnd) {
ramadanMubarak.style.display = 'block';
} else {
ramadanMubarak.style.display = 'none';
}
0 Comments