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