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