To set the spacing between cells in an HTML table, you would use the `cellspacing` attribute in the `
Row 1, Cell 1 | Row 1, Cell 2 |
Row 2, Cell 1 | Row 2, Cell 2 |
However, please note that the `cellspacing` attribute is not supported in HTML5. Instead, you would use CSS to achieve the same effect:
```
Row 1, Cell 1 | Row 1, Cell 2 |
Row 2, Cell 1 | Row 2, Cell 2 |
In this example, the `border-spacing` property in CSS is used to set the space between cells to 10 pixels.