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