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