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