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