Advertisement
LumChron

Use Noto CSS

Sep 24th, 2019
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.45 KB | None | 0 0
  1. @import url("/light.css");
  2.  
  3. /* Let's try and use Noto!*/
  4.  
  5. @font-face {
  6.   font-family: 'Noto';
  7.   font-style: italic;
  8.   font-weight: 400;
  9.   src: local('Noto Italic'), url(https://campaignwiki.org/fonts/NotoSerifDisplay-Italic.ttf);
  10. }
  11.  
  12. @font-face {
  13.   font-family: 'Noto';
  14.   font-style: normal;
  15.   font-weight: 400;
  16.   src: local('Noto'), url(https://campaignwiki.org/fonts/NotoSerif-Regular.ttf);
  17. }
  18.  
  19. body {    font-family: "Noto";    font-size: 11pt; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement