الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> ul li::marker { color: red; } ol li::marker { color: dodgerblue; font-weight: bold; font-family: tahoma; font-size: 13px; } </style> </head> <body> <h1>CSS Markers</h1> <ul> <li>Harmash</li> <li>Youtube</li> <li>Facebook</li> </ul> <ol> <li>Harmash</li> <li>Youtube</li> <li>Facebook</li> </ol> </body> </html>