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