الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> * { font-family: Tahoma, Verdana, sans-serif; } .thick { font-weight: bold; } </style> </head> <body> <h1>CSS font-weight</h1> <p>This paragraph is shown in normal font weight.</p> <p class="thick">This paragraph is shown in bold font weight.</p> </body> </html>