0% found this document useful (0 votes)
8 views1 page

HTML Project Work Grade 8

The document outlines a project for Grade VIII students to create an HTML code for a Student Information Form and a corresponding table. The form includes fields for name, grade, and section, along with a submit button. Additionally, it provides hints for creating the form and table structure using appropriate HTML tags.

Uploaded by

Almas
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views1 page

HTML Project Work Grade 8

The document outlines a project for Grade VIII students to create an HTML code for a Student Information Form and a corresponding table. The form includes fields for name, grade, and section, along with a submit button. Additionally, it provides hints for creating the form and table structure using appropriate HTML tags.

Uploaded by

Almas
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

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.

You might also like