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