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