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