What are HTML Tags?

HTML tag specify Character to define an HTML element.

Rajdeep Singh
Rajdeep Singh

1 min read

Table of contents

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>
copy success
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>
copy success

Empty Tag

Empty Tag Do Not Contain Opening and Closing Tag

Example

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