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