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