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