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