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