الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> body { font-family: arial; counter-reset: section; } h2 { font-size: 20px; margin-top: 26px; } h2::before { counter-increment: section; content: counter(section); color: white; background: brown; margin-right: 6px; font-size: 16px; padding: 5px 10px; border-radius: 12px; } </style> </head> <body> <h1>CSS Styled Counters</h1> <h2>Harmash</h2> <p>An Arabic website offer free tutorials.<p> <h2>Youtube</h2> <p>A free platform to share videos.</p> <h2>Facebook</h2> <p>One of the biggest social networks.</p> </body> </html>