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