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