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