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