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