Use on the webTotal Use [ 3030 ] times
1Add to the head section of web page.
  <link href="https://db.onlinewebfonts.com/c/f820b40c6c93876b474e40ec4bcc82a8?family=F24hourbauer" 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/f820b40c6c93876b474e40ec4bcc82a8?family=F24hourbauer); 
orUse font-face declaration Fonts.(http | https)
@font-face {
    font-family: "F24hourbauer";
    src: url("https://db.onlinewebfonts.com/t/f820b40c6c93876b474e40ec4bcc82a8.eot");
    src: url("https://db.onlinewebfonts.com/t/f820b40c6c93876b474e40ec4bcc82a8.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/f820b40c6c93876b474e40ec4bcc82a8.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/f820b40c6c93876b474e40ec4bcc82a8.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/f820b40c6c93876b474e40ec4bcc82a8.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/f820b40c6c93876b474e40ec4bcc82a8.svg#F24hourbauer")format("svg");
}
 
2CSS rules to specify fonts 
  font-family: "F24hourbauer";