I'm working with a code that populates values in table columns, but the text displays in black color. I would like to highlight the text with a blue background.
Here is the HTML code snippet:
<body>
<div class="container">
<table class="table table-responsive-sm table-bordered border-dark">
<caption style="caption-side: top;">
<h2 style="color:red">Country wise live updates</h2>
</caption>
<thead>
<tr>
<th scope="col">Country</th>
<th scope="col">Total Affected</th>
<th scope="col">Deaths</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{data.country}}</td>
<td>{{data.total}}</td>
<td>{{data.deaths}}</td>
</tr>
</tbody>
</table>
</div>
</body>
https://i.stack.imgur.com/oLFK9.png
Expected outcome should have only the highlighted text part.
I wish to display the output as shown below: