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