Reputation: 135
I want to know how to use arabic fonts on website. I want to made web application in arabic language. So tell me any free library of arabic fonts. And also tell me does ASP.NET have built-in support for arabic language. If I want to built an application using PHP what should I do?
Upvotes: 3
Views: 3422
Reputation: 1523
I am answering the part of your question about free Arabic fonts. You can find some nice ones here, but here are two really beautiful ones. I hope that helps a bit.
Upvotes: 0
Reputation: 5230
Did you try Google Fonts?
You can easily import fonts to your web application, for example, adding the following code to header:
<link href="http://fonts.googleapis.com/earlyaccess/droidarabicnaskh.css" rel="stylesheet" type="text/css" />
then you can use the font in your CSS like following:
body {
font-family: 'Droid Arabic Naskh', 'Monda', sans-serif;
}
Upvotes: 1