الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> ol, ul { list-style-type: none; } </style> </head> <body> <h1>List style type none</h1> <p>The 'none' property hides items markers.</p> <ol> <li>Web designer</li> <li>Front end developer</li> <li>Back end developer</li> </ol> <ul> <li>Web designer</li> <li>Front end developer</li> <li>Back end developer</li> </ul> </body> </html>