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