Tecpins

You are welcome to Tecpins, it is free tutorials for people who want to learn about Html Tutorial,Android Tutorials,PHP Tutorials,Java Tutorials and Css Tutorials.

Post Top Ad

ads
Responsive Ads Here

HTML Centering Content Tag

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.