HTML <center> Tag

HTML5 does not support.

<center> The tag was used for centering text in HTML4.

What to Use Instead?

Example 1

Centering Text (using CSS):

<html>
<head>
<style>
h1 {text-align: center;}
p {text-align: center;}
div {text-align: center;}
</style>
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
<div>This is a div.</div>
</body>
</html>

Try It Yourself