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