- 1
Someone help help me to crest a student table and student attendance using html
Someone help help me to crest a student table and student attendance using html
3 Antworten
0
Hi! please, look for the section on creating tables in the html course in the "training" section
- 1
did you mean "to create" instead of "to crest"?
do you want to create one or two tables?
html table structure:
<table>
<tr>
<td> cell content </td>
</tr>
</table>
each table could have how many tr (table row) element you want, and each tr could have how many td (table data, meaning cell content wrapper) you want...
... but each row of a single table should have same count of cells (even if you could span rows and/or columns: the virtual count of cells in each rows should be equal)
but you must know at least basic html to be able to use this kind of stuff, and Ярослав Вернигора(Yaroslav Vernigora) is right: you probably need to (re)view lesson on table here and/or elsewhere ^^