Show Output
<!DOCTYPE html> <html lang="en"> <head> <title>Example of HTML center tag</title> </head> <body> <h2>Don't use this tag</h2> <center><p>This paragraph will be centered.</p></center> <h2>Alternative</h2> <p style="text-align: center;">This paragraph will be centered using CSS.</p> <p><strong>Note:</strong> To learn more about style rules please study tutorials on <a href="#">CSS</a>.</p> </body> </html>