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