Center using the align attribute of HTML

Explanation

To center using the align attribute of HTML, specify center for align attribute.

Sample Code [Output]

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=shift_jis">
<title>Sample</title>
</head>
<body>
<h1>Sample</h1>
<p align="center">
In HTML, you can specify alignments using the align attribute.<br>
This paragraph is centered.
</p>
</body>
</html>