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