Heading 's In HTML

Heading 's In HTML

Heading Tags

·

1 min read

Table of contents

No heading

No headings in the article.

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <h1> Heading 1</h1>
    <h2> Heading 1</h2>
    <h3> Heading 1</h3>
    <h4> Heading 1</h4>
    <h5> Heading 1</h5>
    <h6> Heading 1</h6>
</body>
</html>

Just copy and Paste the above code.