الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> body { counter-reset: section; } h2 { counter-reset: subsection; } h2::before { counter-increment: section; content: counter(section) ". "; } p::before { counter-increment: subsection; content: counter(section) "." counter(subsection) ". "; } </style> </head> <body> <h1>CSS Multiple Counters</h1> <h2>Frontend</h2> <p>HTML</p> <p>CSS</p> <p>Javascript</p> <h2>Backend</h2> <p>C#</p> <p>MySQL</p> </body> </html>