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