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