Tags in HTML are which defines that how a web browser will format and display the content inside it. HTML tags are used to create HTML documents and render their properties.
Few important points:-
- HTML files must have some important tags.
- Html
- Head
- Body
- HTML tags must be inside <> brackets.
- Every Tag which is opened must be closed.
- The opening Tag is written as <tagname>
- The closing Tag is written as </tagname>
Basics/Fundamental Tags Used in Html
- HTML
- Every Html content is written inside Html tags
- Head
- All the links for CSS and JS are written inside the head.
- Title
- The title for the document is given here.
- It is placed inside the head tag.
- Body
- All the content that is to be displayed on the browser is written inside the body.
Few important links for reference:-
Learn Tags in HTML click here.
0 comments