الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> ul { margin: 0; padding: 5px 10px; list-style-type: disc; list-style-position: inside; background: deepskyblue; } ul li { background: darkslateblue; color: white; margin: 5px 0; padding: 5px; } ul li::marker { color: gold; } </style> </head> <body> <h1>Customized list</h1> <ul> <li>Web designer</li> <li>Front end developer</li> <li>Back end developer</li> </ul> </body> </html>