Name the tags which are used with tag.
Answers
Answer:
Firstly remember one thing
Tag is nothing but it's syntax used in non technical side.
clear you questions?
then we will helped .
Explanation:
Tags
Explanation:
HTML contains lots of predefined tag. I have discussed only a few of them below:
1) HTML tag: It is the root of the html document which is used to specify that the document is html.
Syntax: <html> Statements... </html>
2) Head tag: Head tag is used to contain all the head element in the html file. Syntax: <head> Statements... </head>
3) Body tag: It is used to define the body of html document.
Syntax: <body> Statements... </body>
4) Title tag: It is used to define the title of html document.
Syntax: <title> Statements... </title>
5) Heading tag: It is used to define the heading of html document.
Syntax: <h1> Statements... </h>
<h2> Statements... </h2>
<h3> Statements... </h3>
<h4> Statements... </h4>