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