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