these tags are enclosed within angle braces <TAG NAME> . Except few tags, most of the tags have their corresponding closing tags. For example <html> has its closing tag </html> and body tag has its closing tag </body> tag etc.
Tags/Description
- <!DOCTYPE ...> this tag defines a document type and HTML version.
- <html> this tag in-closes the complete HTML document and mainly comprises of document header which is represented by <head>..</head> and document body which is represented by <body>..</body> tags.
- <head> this tag represents the document's header which can keep other HTML tags like <title>,<link> etc.
- <body> This tag represents the document's body which keeps other tags like <h1>, <div>, <p> etc.
- <h1> Represents the heading.
- <p> Represents a paragraph.
No comments:
Post a Comment