telugu-ui.html 620 B

1234567891011121314151617181920212223242526272829
  1. <head>
  2. <meta charset="UTF-8">
  3. <style>
  4. @font-face {
  5. font-family: NotoSansUI;
  6. src: url('../fonts/individual/unhinted/NotoSansUI-Regular.ttf');
  7. }
  8. @font-face {
  9. font-family: NotoSansTeluguUI;
  10. src: url('../fonts/individual/unhinted/NotoSansTeluguUI-Regular.ttf');
  11. }
  12. body {
  13. font-family: NotoSansUI, sans-serif;
  14. }
  15. .telugu {
  16. font-family: NotoSansTeluguUI, sans-serif;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. Latin text
  22. <span class="telugu">తెలుగు లిపి</span>
  23. Latin text
  24. <span class="telugu">తెలుగు లిపి</span>
  25. </body>