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