Course Content
Ultimate HTML
Ultimate HTML
Challenge: Tables
🏁 Goal
Present employee information in a structured table format by using appropriate HTML tags to create rows and columns.
📋 Task
Create a table with three columns: Name, Position, and Wage. Focus on using the appropriate HTML tags to populate the table with the correct rows and columns. Here is the data to include:
- Name: Emma Johnson | Position: Sales Associate | Wage: $15.50 per hour.
- Name: Liam Thompson | Position: Customer Service Representative | Wage: $14.75 per hour.
- Name: Olivia Rodriguez | Position: Marketing Coordinator | Wage: $18.25 per hour.
- Name: Noah Smith | Position: IT Support Specialist | Wage: $20.00 per hour.
- Name: Ava Davis | Position: Administrative Assistant | Wage: $16.80 per hour.
index
index
index
- Use the
table
tag to define the main container element for the table. - Use the
thead
tag to group the header content of the table, such as column headings. - Use the
tr
tag to define a new row within the table. - Use the
th
tag to define the header text for each column. - Use the
tbody
tag to group the main content of the table, which includes the rows and data cells. - Use the
td
tag to define the actual data or content within each cell of the table.
index
index
index
Thanks for your feedback!