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