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