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