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