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