(PCC)::[how-to-use-center-tag-to-centering-content-in-html-language]::[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>
This text is not in the center.
This text is in the center.