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