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