Write the HTML tags for the table to set the border as ‘6’, background color as ‘blue’, and align the table at the center.
Answers
Answered by
2
Answer:
<html>
<body>
<table bgcolor="blue" align="center" border="6" >
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Age</th>
</tr>
<tr>
<td>Jill</td>
<td>Smith</td>
<td>50</td>
</tr>
<tr>
<td>Eve</td>
<td>Jackson</td>
<td>94</td>
</tr>
<tr>
<td>John</td>
<td>Doe</td>
Similar questions