1234567891011121314151617181920212223242526272829 |
- <head>
- <meta charset="UTF-8">
- <style>
- @font-face {
- font-family: NotoSansUI;
- src: url('../fonts/individual/unhinted/NotoSansUI-Regular.ttf');
- }
- @font-face {
- font-family: NotoSansTeluguUI;
- src: url('../fonts/individual/unhinted/NotoSansTeluguUI-Regular.ttf');
- }
-
- body {
- font-family: NotoSansUI, sans-serif;
- }
-
- .telugu {
- font-family: NotoSansTeluguUI, sans-serif;
- }
- </style>
- </head>
- <body>
- Latin text
- <span class="telugu">తెలుగు లిపి</span>
- Latin text
- <span class="telugu">తెలుగు లిపి</span>
- </body>
|