HTML Tags
- The structure of an HTML document contains tags
- Contents of an HTML document surrounded by tags(<html> for example).
- A tag of an HTML document contains its own closing tag(</html> for example)
- Even though some of the tags do not have their closing tag. The line break tag for example(<br />)
- All you need to remember is simple that, every tag will appear like in the following format
- Open tag -> Your content -> Closing tag(<b>Bold</b> for example, which makes the text inside <b> tag bold)