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