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