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