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