الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <body> <!-- هنا حددنا أن الترقيم سيبدأ إعتباراً من الحرف الأبجدي الإنجليزي الثالث --> <p>The following items are inside an ordered list with type 'A' and starting with third letter in the alphabets which is the letter 'C':</p> <ol type="A" start="3"> <li>Apple</li> <li>Orange</li> <li>Mango</li> </ol> <!-- هنا حددنا أن الترقيم سيبدأ إعتباراً من الحرف الأبجدي الروماني الثالث --> <p>The following items are inside an ordered list with type 'I' and starting with third letter in the alphabets which is the letter 'III':</p> <ol type="I" start="3"> <li>Apple</li> <li>Orange</li> <li>Mango</li> </ol> </body> </html>