13 lines
475 B
HTML
13 lines
475 B
HTML
<!DOCTYPE html>
|
|
<html lang="ar">
|
|
<meta charset="utf-8">
|
|
<style>
|
|
/* On Windows, we map 'cursive' to Comic Sans MS; but the Arabic letters
|
|
are not supported and should fall back to Arial */
|
|
.a { font: 50px "Comic Sans MS", "Arial"; }
|
|
/* On Windows, we map 'monospace' to Consolas, and the Arabic letters
|
|
should fall back to Arial */
|
|
.b { font: 50px "Consolas", "Arial"; }
|
|
</style>
|
|
<div class="a">السلام عليكم</div>
|
|
<div class="b">السلام عليكم</div>
|