Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

css font face

@font-face {
  // Defining what the font will be called
  font-family: thisSpecialFont;
  // Linking to the font file
  src: url(linkToFontFile.woff);
}
body {
  font-family: thisSpecialFont;
}
 
PREVIOUS NEXT
Tagged: #css #font #face
ADD COMMENT
Topic
Name
5+7 =