First it will glow then change what color you want
If you are using CSS
:
table {
border-collapse: collapse;
border: 5px solid black;
width: 100%;
}
td {
width: 50%;
height: 2em;
border: 1px solid #ccc;
}
HTML
<table>
<tbody>
<tr><td></td><td></td></tr>
<tr><td></td><td></td></tr>
<tr><td></td><td></td></tr>
</tbody>
</table>
for HTML:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Sample table</title>
<style>
table {
border-collapse: collapse;
border: 5px solid black;
width: 100%;
}
td {
width: 50%;
height: 2em;
border: 1px solid #ccc;
}
</style>
</head>
<body>
<table>
<tbody>
<tr><td></td><td></td></tr>
<tr><td></td><td></td></tr>
<tr><td></td><td></td></tr>
</tbody>
</table>
</body>
</html>
Data availability is the one related to the server being down.
The report footer section appears at the bottom of the last page. The correct option is b.
<h3>What is a report footer section?</h3>
The report footer is that contain the report items. It is placed in the last page or the bottom of the report border. It is present only one time exactly at the last page.
Thus, the correct option is b, at the bottom of the last page.
Learn more about report footer section
brainly.com/question/13261774
#SPJ1