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