Project Work Marks: 10
Grade VIII
Write HTML codes, Student Information Form
Form:
Name: A text field where the user can enter their name.
Grade: A number field where the user can enter the grade.
Section: A dropdown to select the section (A, B, or C).
Submit Button: A button to submit the form.
Student Information Table:
Name Grade Section
Ali 5 A
Ahmed 6 B
Ayesha 7 C
Mohammad 8 A
Sehar 5 B
Hints:
1. Form Creation:
Form Tag: Wrap inputs in a <form> tag.
Name (Text Input): Use <input type="text"> for the name field.
Grade (Number Input): Use <input type="number"> for the grade field.
Section (Dropdown): Use <select> with <option> for the section.
Submit Button: Use <button type="submit"> to submit the form.
2. Table Creation:
Table Structure: Use <table>, <tr>, <th>, and <td> to create the table.
Data Rows: Add sample data rows for the students.