*HTML Tags*
HTML Tags are keywords or phrases surrounded by angle bracket (<>). They are used to define the start and end of an element, and they provide instructions to the web browser on how to display the content.
Types of HTML Tags
1. Opening Tags: These tags define the start of an element. They are denoted by a keyword or phrase surrounded by angle brackets (<>). E.g; <p>, <h1>, <h3>, <div>, <span>.......
2. Closing Tags: These tags define the end of an element. They are denoted by a forward slash (/) followed by the keyword or phrase surrounded by angle brackets (<>). E.g; </p>, </h1>, </h3>, </div>, </span>.......
