Display Sinhala letters in HTML

How to display Sinhala letter in HTML?

For instance,

<html>
   <body>
     <p>විද්‍යා දදාති විනයං</p>
   <body>
<html>

Is it possible?

+4
source share
3 answers

In your HTML document you use

<meta charset="UTF-8">

in the title tag.

You can also check how your site looks in services like BrowserStack

+5
source

You can use <meta charset="UTF-8">in your web page title tag like Branco Peјiћ mentioned in his answer.

Otherwise, you can use SETTdeco . This allows the Sinhala website to read on any computer, regardless of Sinhala user support.

+1
source

CSS, , , "myCustomFont", URL-, :

@font-face {
    font-family: myCustomFont;
    src: url(your_font.woff);
}

, css, , ,

font-family:myCustomFont;

0

All Articles