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