mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
28 lines
469 B
HTML
28 lines
469 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Simple Devanagari shaping</title>
|
|
<style>
|
|
@font-face {
|
|
font-family: lohit-hi;
|
|
src: url(../fonts/ttf-indic/lohit_hi.ttf);
|
|
}
|
|
body {
|
|
font-family: lohit-hi;
|
|
font-size: 36px;
|
|
margin: 18px;
|
|
}
|
|
.w {
|
|
color: white;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<!-- ska does not have the same width as saka, unless rendered with visible halant -->
|
|
<div>
|
|
!<span class="w">स्क</span>!
|
|
</div>
|
|
</body>
|
|
</html>
|