first of all you have to write in Unicode language in your webpage
then if the user is using zawgyi font it will automatically change into zawgyi and if the user is using Unicode font it will automatically change into Unicode
<html>
<head>
<title>zawgyi supported site</title>
<link href="https://fonts.googleapis.com/earlyaccess/padauk.css" rel="stylesheet" />
<style>
.mmf {
font-family: padauk, myanmar3, pyidaungsu, 'noto sans myanmar'
}
</style>
</head>
<body>
<div class="mmf">
// here is myanmar language in UNICODE text
</div>
</body>
</html>
0 Comments