Posts

Showing posts with the label duah

Daily duah list

Image
all the pictures all pics <script>         async function fetchPrayerTimes() {             const prayerTimesUrl = 'https://raw.githubusercontent.com/mdmahabubhossain/FIA/refs/heads/main/prayer_times_2025.json';             const prayerTimesContainer = document.getElementById('prayer-times');             const errorMessageContainer = document.getElementById('error-message');             try {                 // Fetch data from the URL                 const response = await fetch(prayerTimesUrl);                 if (!response.ok) throw new Error('Failed to fetch prayer times data.');                 const prayerTimes = await response.json();           ...