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