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