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