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