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