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