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