Hello I have to write a form for people to submit their CV on. I have to include the schools they went to, what they studied, at each school, and the grades for each subject.
My first thought was a table, because that's how you would usually display this data when its not a form like so...
The problem is, as a form, I am not sure where you would put the input labels?HTML Code:<table> <tr> <td></td> <th>School/College/University</th> <th>Subjects</th> <th>Grades</th> </tr> <tr> <th rowspan="3">School 1</th> <td rowspan="3">Hogwarts</td> <td>Nice Spells</td> <td>A</td> </tr> <tr> <td>Nasty Spells</td> <td>B</td> </tr> <tr> <td>Healing Spells</td> <td>C</td> </tr> <tr> <th>School 2</th> <td>University of Jumping</td> <td>Skipping</td> <td>2.1 Honours</td> </tr> </table>
Thanks, ro0bear![]()







Bookmarks