Someone help help me to crest a student table and student attendance using html | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 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

27th Feb 2021, 12:39 PM
Muga Bech
Muga Bech - avatar
3 Answers
0
Hi! please, look for the section on creating tables in the html course in the "training" section
27th Feb 2021, 12:54 PM
Yaroslav Vernigora
Yaroslav Vernigora - avatar
27th Feb 2021, 4:02 PM
Yaroslav Vernigora
Yaroslav Vernigora - avatar
- 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 ^^
27th Feb 2021, 3:35 PM
visph
visph - avatar