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