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