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