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