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