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