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