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