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