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