الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> body { counter-reset: title; } h2::before { counter-increment: title; content: counter(title) ". "; } </style> </head> <body> <h1>CSS Counters</h1> <h2>Harmash</h2> <h2>Youtube</h2> <h2>Facebook</h2> </body> </html>