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