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