Answers for "how to add font in php"

CSS
25

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;
}
Posted by: Guest on October-29-2020
0

using custom fonts in php

@font-face {font-family: "My Custom Font"; src: url('../fonts/gurbaniwebthick.ttf') ;}
Posted by: Guest on January-21-2021

Code answers related to "how to add font in php"

Browse Popular Code Answers by Language