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