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