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