This resource provides Quranic script in Digital Khatt format. The script uses Unicode text with specialized font rendering for digital applications.
surah:ayah
1:1
text_digital_khatt
digitalkhatt-v2
/* Include the font family in your CSS */ .quran-text { font-family: 'digitalkhatt-v2', 'Amiri', serif; direction: rtl; text-align: right; }
// Fetch verse data fetch('/api/v1/verses/1:1.json') .then(response => response.json()) .then(data => { document.getElementById('verse').innerHTML = data.text; document.getElementById('verse').className = 'digitalkhatt-v2'; });