Centering Content
You can use <center> tag to put any content in the center of the page or any table cell.Example
<!DOCTYPE html><html>
<head>
<title>Centering Content Tag</title>
</head>
<body>
<p>Not in the center.</p>
<center>
<p>In the center.</p>
</center>
</body>
</html>
Result
Not in the center.
In the center.