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