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