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