Headings in HTML

by danielkwood

HTML

<html>
  <head>
    <title>Headings examples</title>
  </head>
  <body>
    <h1>This is the largest heading</h1>
    <h2>This is a large heading</h2>
    <h3>This is a medium heading</h3>
    <h4>This is a small heading</h4>
    <h5>This is a smaller heading</h5>
    <h6>This is the smallest heading</h6>
</body>
</html>