Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagecss
@font-face {
   font-family: 'MyWebFont';
   src: local(''),
       url('resources/myfont.woff2') format('woff2'), 
       url('resources/myfont.woff') format('woff'),
       url('resources/myfont.ttf') format('truetype'), 
       url('resources/myfont.svg#NotoSansKRsvg') format('svg'); 
}
body {
	font-family: 'MyWebFont', Fallback, sans-serif;
}

...