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