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