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