HTML Basic Tag List with Example
When you learn beginners HTML, It's important to have a basic HTML tags understanding. Here all Basic HTML tags are listed to help you learn.
HTML Paragraph Tag
Defines a paragraph into web document. HTML paragraph define using <p> tag.
Example-Code:
<body>
<p> This is first Paragraphs </p>
<p> This is Second Paragraphs </p>
</body>
HTML Comment Tag
Defines the Comments <!-- Your Comment --> tag.
Example-Code:
<body>
<img src="../../jix/w2t.png" width="380" height="70" /> <!--Image File-->
</body>
HTML Images Tag
To display Images into web document. HTML Images are define inside the <img> tag.
Example-Code:
<body>
<img src="../../jix/w2t.png" width="380" height="70" />
</body>
HTML Link Tag
Defines the Link in internal or External document. HTML Link are defined inside the <a> tag.
Example-Code:
<body>
<a href="https://sheralif.blogspot.com">Web Development Tutorial</a>
</body>
HTML Headings Tags
Defines the Heading <h1> to <h6> tags.
Example-Code:
<body>
<h1> Heading Tag </h1>
<h2> Heading Tag </h2>
<h5> Heading Tag </h5>
<h6> Heading Tag </h6>
</body>
Post a Comment
THANKS for comment!!!!