HTML Tags
HTML tags keywords are surrounding in Opening Tag <html> and Closing Tag</html>.
HTML tags is pairs like <body> and </body>. It's container tags.
Some HTML tags is not pairs in Opening and Closing like <br />, <hr />. It's empty tags.
All tags are write in Lower Alphabetical and empty tags always write in closing Tag type like <br />.
HTML tags keywords are surrounding in Opening Tag <html> and Closing Tag</html>.
HTML tags is pairs like <body> and </body>. It's container tags.
Some HTML tags is not pairs in Opening and Closing like <br />, <hr />. It's empty tags.
All tags are write in Lower Alphabetical and empty tags always write in closing Tag type like <br />.
There are 2 Types of HTML Tags-
1. Container Tags
2. Empty Tags
Container Tag- Which tags has its opening and closing tag like <> and </>(closing) is called container tags
Ex
<html>......</html>
<body>.......</body>
Empty Tag:-
Which tags has only its opening but not use closing like < tag_name_only>.
Ex.
<br>- For break a row or line
<hr>- for draw a horizontal line
No comments:
Post a Comment