Download presentation
Presentation is loading. Please wait.
1
TIK 12 – Prof. Blerand Koshi
Tabelat TIK 12 – Prof. Blerand Koshi
2
Tabelat
3
Tabelat Listat nuk janë të mjaftueshme
Në tabela mund të kemi disa shtylla Ka dallime midis HTML 5 dhe HTML 4.01 atributet si "align", "bgcolor", "border", "cellpadding", "cellspacing", "frame", "rules", "summary" dhe "width" nuk suportohen nga HTML 5 funksionet e tyre shtohen përmes CSS
4
Elementet e tabelës
5
PJESA E PARË <body> <h1>My Table</h1> <table> <tr> <th>Airport Code</th> <th>Common Name/City</th> </tr> <td>CWA</td> <td>Central Wisconsin Airport</td> <td>ORD</td> <td>Chicago O’Hare</td> <td>LHR</td> <td>London Heathrow</td> </table> </body> </html>
6
Shembuj të atributeve
7
Tabelat komplekse Elementet si <table>, <th>, <tr>, <td> janë elementet bazë për tabela në HTML Tabelat komplekse mund të përmbajnë <caption> <col> <colgroup> <thead> <tfoot> <tbody>
8
<!DOCTYPE html> <html> <head> <style> thead {color:green;} tbody {color:blue;} tfoot {color:black;} table, th, td { border: 1px solid black; } </style> </head> <body> <table> <colgroup> <col span="1" style="background-color:red"> <col style="background-color:yellow"> </colgroup> <thead> <tr> <th>Muaji</th> <th>Kursimet</th> </tr> </thead> <tfoot> <td>Shuma</td> <td>155 €</td> </tfoot> <tbody> <td>Janar</td> <td>80 €</td> <td>February</td> <td>75 €</td> </tbody> </table> <p><b>Vërejtje:</b> Elementet thead, tbody, and tfoot nuk do të kenë efekt në dukjen e parazgjedhur të tabelës. Sidoqoftë, përmes CSS ne mund t'i japim stil.</p> </body> </html>
9
? Pyetje
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.