الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> .names { background-color: #d7d9f2; } .marks { background-color: #ffe8d4; } caption { padding: 8px; caption-side: bottom; } table { border-collapse: collapse; margin-top: 20px; } table th, table td { padding: 7px; border: 1px solid gray; } </style> </head> <body> <table> <caption>Final semester marks</caption> <colgroup> <col> <col span="2" class="names"> <col class="marks"> </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>