This resource provides Quranic script in Uthmani format. The script uses Unicode text with specialized font rendering for digital applications.
surah:ayah
1:1
text_uthmani
me_quran
surah:ayah:word
/* Include the font family in your CSS */ .quran-text { font-family: 'me_quran', '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 = 'me_quran'; });