الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <body> <table border="1"> <caption>Final semester marks</caption> <!-- <col> هنا قمنا بتقسيم أعمدة الجدول لثلاث مجموعات لأننا وضعنا 3 وسوم --> <!-- سيتم تطبيقها على الأعمدة <col> التنسيقات التي قمنا بإجرئها على الوسوم --> <colgroup> <col> <col span="2" style="background:#d7d9f2;"> <col style="background:#ffe8d4;"> </colgroup> <tr> <th>ID</th> <th>First Name</th> <th>Last Name</th> <th>Mark</th> </tr> <tr> <td>1</td> <td>Mhamad</td> <td>Harmush</td> <td>A</td> </tr> <tr> <td>2</td> <td>Rima</td> <td>Houssayni</td> <td>C</td> </tr> <tr> <td>3</td> <td>Youssef</td> <td>Jabber</td> <td>B</td> </tr> </table> </body> </html>