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