Use on the webTotal Use [ 5587 ] times
1Add to the head section of web page.
  <link href="https://db.onlinewebfonts.com/c/dd97820706a6f2397bbfe7d3245dd5ed?family=DJB+The+Teacher+Font" rel="stylesheet"> 
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
  @import url(https://db.onlinewebfonts.com/c/dd97820706a6f2397bbfe7d3245dd5ed?family=DJB+The+Teacher+Font); 
orUse font-face declaration Fonts.(http | https)
@font-face {
    font-family: "DJB The Teacher Font";
    src: url("https://db.onlinewebfonts.com/t/dd97820706a6f2397bbfe7d3245dd5ed.eot");
    src: url("https://db.onlinewebfonts.com/t/dd97820706a6f2397bbfe7d3245dd5ed.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/dd97820706a6f2397bbfe7d3245dd5ed.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/dd97820706a6f2397bbfe7d3245dd5ed.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/dd97820706a6f2397bbfe7d3245dd5ed.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/dd97820706a6f2397bbfe7d3245dd5ed.svg#DJB The Teacher Font")format("svg");
}
 
2CSS rules to specify fonts 
  font-family: "DJB The Teacher Font";