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