I am building an Arabic website using bootstrap-3.
I am getting everything fine -so far- with no problems except for the html heading
e.g. <h1>..</h1>
, <h2>..</h2>
, <h3>..</h3>
, <h4>..</h4>
, <h5>..</h5>
, and <h6>..</h6>
Whenever I add some Arabic text in the html heading the IE-10 render it as a garbage! While it works fine in Chrome and Firefox.
Here is an image to show you what is the issue:
As you can see all Arabic letters are showing OK except for the html-heading.
And here is my HTML:
<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="assets/ico/favicon.png">
<title>موقع عربي</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.css" rel="stylesheet">
<!-- Bootstrap RTL -->
<link href="css/bootstrap-rtl.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/bootstrap-rtl-custom.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="jumbotron">
<h1>عنوان رئيسي</h1>
<h2>عنوان فرعي</h2>
<p>محتوى نص.. محتوى نص.. محتوى نص.. محتوى نص.. محتوى نص.. </p>
<p><a class="btn btn-primary btn-lg" role="button">المزيد...</a></p>
</div> <!-- /."jumbotron" -->
</div> <!-- /.="container" -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>
Your help is appreciated...