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