Issue
I need to place a hindi character in some div element. But the special round sign is not needed there.
Here how these letters looks like.
ा
ी
ि
ो
ौ
I need exactly the standalone text character as the real solution but not an image.
Solution
You need to use a Hindi font to show the letter WITH diacritic :
CSS found here wiktionary.org ा
.Deva {
font-family: 'Adobe Devanagari', 'Noto Serif Devanagari', Utsaah, 'Devanagari MT', Raghu, Gargi, JanaSanskrit, JanaHindi, Siddhanta, Akshar, sans-serif;
font-size: 120%;
}
<strong class="Deva" lang="mul">ा ी ि ो ौ</strong>
Result in Chrome on Mac
Result on Chrome Win10 after installing devanagari-mt-2.ttf
Result in Carsten's Chrome on Windows 10
Result in KiranVJ's Chrome 107 Win 10 and Adobe
Answered By - mplungjan
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.