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