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