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