html`
<!-- This is a style sheet - see the structure - <style> ... </style> are the start and end markers -->
<style>
table, tr, td { border: 1px solid red }
</style>
<!-- This is the table itself (notice the ability to add extra styling for this table alone in the header -->
<table style="color:blue">
<tr>
<th>ID</th>
<th>Rocket name</th>
</tr>
${ launches.map( launch => `
<tr>
<td>${launch.id}</td>
<td>${launch.name}</td>
</tr>`
) }
</table>
`