<!DOCTYPE html>
<html>

<head>
  <title>The Effects of the Deprecated align Attribute</title>
</head>

<body>
  <h1 align="left">Left-Aligned Heading</h1>
    <p>This heading uses the align attribute with a value of left.</p>

  <h1 align="center">Centered Heading</h1>
    <p>This heading uses the align attribute with a value of center.</p>

  <h1 align="right">Right-Aligned Heading</h1>
    <p>This heading uses the align attribute with a value of right.</p>

</body>
</html>