Html Div Tag
The <tbody> tag is used to group the body content in an HTML table.The <tfoot> tag is used to group the footer content in an HTML table. <tfoot> must appear before <tbody> within a table, so that a browser can render the foot before receiving all the rows of data.
Example:
<!DOCTYPE html>
<html lang="en">
<head>
<title>Creative Mission-Web Development & research center</title>
</head>
<body >
<div style="background: skyblue">
<h5 >SEARCH LINKS</h5>
<a target="_blank" href="http://www.google.com">Google</a>
</div>
</body>
</html>
</pre>
<br>
<strong>Output:</strong>
<div class='out'><center>
<div style="background: sky">
<h5 >SEARCH LINKS</h5>
<a target="_blank" href="http://www.google.com">Google</a>
</div></center>
</div>
</html>