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