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