🚀 LEVEL UP TO SENIOR:Unlock 500+ Advanced Practical Challenges & Exercises.
🎓 COURSERA PARTNER:Earn professional Google, Meta, and IBM certificates to supercharge your resume.

Project 29: E-commerce Cart

HTML Masterclass
Step 1 of 4
Project

Cart Skeleton & a noindex Robots Tag

Build the cart as a <table> of items (reusing the table skills from Restaurant Menu), then add <meta name="robots" content="noindex, nofollow"> to <head>. A cart page is unique to each shopper and has no business showing up in search results — this tag is exactly how you tell crawlers to leave it alone.

🎯 Your Task

Please add the exact code shown in the light gray box below to your editor.Do not delete your previous code, just insert these new lines in the correct place!

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Your Cart | Northwind Goods</title>
  <meta name="robots" content="noindex, nofollow">
</head>
<body>
  <h1>Your Cart</h1>
  <table>
    <thead>
      <tr>
        <th scope="col">Item</th>
        <th scope="col">Price</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td>Canvas Tote Bag</td>
        <td>$28</td>
      </tr>
    </tbody>
  </table>
</body>
</html>