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