Programming Code Center(PCC)
[HTML]

(PCC)::[how-to-use-center-tag-to-centering-content-in-html-language]::[html]

File Name : index.html

<!DOCTYPE html>
<html>
<head>
<title>Centring Content Example</title>
</head>
<body>
<p>This text is not in the center.</p>
<center>
<p>This text is in the center.</p>
</center>
</body>
</html>

Output :

Centring Content Example

This text is not in the center.

This text is in the center.