Rajdeep Singh.

What are HTML Tags?

HTML tag specify Character to define an HTML element.

By html 1 min read

Tags Are Specified word or Character used to Define Tags Inside HTML.They begin with the < Open Bracket symbol and end with the > Closing Bracket symbol. Whatever is written inside < and > are called tags.

Example

<h1> A heading </h1>

HTML tag Example By Rajdeep Singh


HTML Tags Type

  1. Container Tag:
  2. Empty Tag:

Container Tag

Container tag always Contains opening and closing Tag.

Example

<html> </html>
<head> </head>
<body> </body>

Empty Tag

Empty Tag Do Not Contain Opening and Closing Tag

Example

<br>
<area>
<base>
<hr>
<img>
<input>