Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Learn Challenge: Work with Tables | Tables and Forms
HTML Essentials

bookChallenge: Work with Tables

Task

Create an HTML table to display restaurant menu items, including their names, descriptions, and prices. Fill in the table with the following data using the correct table structure.

  1. Savory Bliss Bowl
    • Description: Quinoa, roasted veggies, grilled chicken, tahini dressing;
    • Price: $12.99.
  2. Mediterranean Delight Wrap
    • Description: Halloumi cheese, spinach, tomatoes, tzatziki in a wrap;
    • Price: $10.49.
  3. Sizzling BBQ Burger
    • Description: Beef patty, bacon, cheddar, caramelized onions, fries;
    • Price: $13.99.
  4. Veggie Harvest Salad
    • Description: Greens, sweet potatoes, chickpeas, avocado, feta, vinaigrette;
    • Price: $9.99.
  5. Seafood Pasta Extravaganza
    • Description: Shrimp, scallops, mussels, linguine, garlic wine sauce;
    • Price: $16.99.
index.html

index.html

copy

Hint

  • Step 1: Create the table structure using the <table> tag. Inside the table, use the <thead> tag for the table head and the <tbody> tag for the table body. Within the <thead> section, add a row (<tr>) with table header cells (<th>) for each column: Item, Description, and Price.
  • Step 2: Populate the table with menu items by adding rows (<tr>) inside the <tbody> section. Use table data cells (<td>) within each row (<tr>) to specify the corresponding details for each menu item.
index.html

index.html

copy

Everything was clear?

How can we improve it?

Thanks for your feedback!

SectionΒ 4. ChapterΒ 2

Ask AI

expand

Ask AI

ChatGPT

Ask anything or try one of the suggested questions to begin our chat

Suggested prompts:

Can you show me the HTML code for the menu table?

Can you explain how to add more items to the table?

Can you help me style the table to look more attractive?

Awesome!

Completion rate improved to 3.13

bookChallenge: Work with Tables

Swipe to show menu

Task

Create an HTML table to display restaurant menu items, including their names, descriptions, and prices. Fill in the table with the following data using the correct table structure.

  1. Savory Bliss Bowl
    • Description: Quinoa, roasted veggies, grilled chicken, tahini dressing;
    • Price: $12.99.
  2. Mediterranean Delight Wrap
    • Description: Halloumi cheese, spinach, tomatoes, tzatziki in a wrap;
    • Price: $10.49.
  3. Sizzling BBQ Burger
    • Description: Beef patty, bacon, cheddar, caramelized onions, fries;
    • Price: $13.99.
  4. Veggie Harvest Salad
    • Description: Greens, sweet potatoes, chickpeas, avocado, feta, vinaigrette;
    • Price: $9.99.
  5. Seafood Pasta Extravaganza
    • Description: Shrimp, scallops, mussels, linguine, garlic wine sauce;
    • Price: $16.99.
index.html

index.html

copy

Hint

  • Step 1: Create the table structure using the <table> tag. Inside the table, use the <thead> tag for the table head and the <tbody> tag for the table body. Within the <thead> section, add a row (<tr>) with table header cells (<th>) for each column: Item, Description, and Price.
  • Step 2: Populate the table with menu items by adding rows (<tr>) inside the <tbody> section. Use table data cells (<td>) within each row (<tr>) to specify the corresponding details for each menu item.
index.html

index.html

copy

Everything was clear?

How can we improve it?

Thanks for your feedback!

SectionΒ 4. ChapterΒ 2
some-alt