الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> ul { list-style-image: url('/tutorials/css/lists/circle.png'); } </style> </head> <body> <h1>List style type image</h1> <p>You can set an image as marker for items.</p> <ul> <li>Web designer</li> <li>Front end developer</li> <li>Back end developer</li> </ul> </body> </html>