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