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