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