الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> * { font-family: Tahoma, Verdana, sans-serif; } h1 { font-size: 2.5em; /* 2.5em x 16 = 40px */ } h2 { font-size: 1.5em; /* 1.5em x 16 = 24px */ } p { font-size: 0.875em; /* 1.5em x 16 = 24px */ } </style> </head> <body> <h1>CSS font-size</h1> <h2>Set font size in em</h2> <p>If you change the font size in browser all font sizes set in em unit will change automatically.</p> </body> </html>