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