admin管理员组

文章数量:1336133

I am trying to make my text look like quran.

Which is ():

I am using the following HTML.

<!DOCTYPE html>
<html lang="ar">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Quranic Ayah</title>
    <style>
        body {
            font-family: 'Scheherazade', serif;
            direction: rtl;
            text-align: right;
            font-feature-settings: "liga" 1;
        }
    </style>
</head>

<body>
    <p>رَبِّ اجۡعَلۡنِىۡ مُقِيۡمَ الصَّلٰوةِ وَمِنۡ ذُرِّيَّتِىۡ​​ ۖ رَبَّنَا وَتَقَبَّلۡ دُعَآءِ‏ ٤٠</p>
</body>

</html>

What I am getting instead is:

I have marked the issues in red.

How can I fix it so that it looks like quran

本文标签: cssArabic Not Rendered Like In qurancomStack Overflow