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.
<html>
) and End tag or closing tag(</html>
).<h1> A heading </h1>
Container tag always Contains opening and closing Tag.
Example
<html> </html>
<head> </head>
<body> </body>
Empty Tag Do Not Contain Opening and Closing Tag
Example
<br>
<area>
<base>
<hr>
<img>
<input>