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