WHAT IS HTML TAGS?
An HTML tag tells the browser how to display or handle content.
Basic tag structure
<tagname> opening tag
</tagname> closing tag
USAGE OF TAGS?
HTML tags are used to create, structure, and format content on a web page. Each tag has a specific purpose.
Basic html tags
<HTML>
Usage: Defines the beginning and end of an HTML document.<head>
Usage: Contains meta information like title, styles, and scripts.<title>
Usage: Sets the title of the webpage.<body>
Usage: Holds all visible content of the webpage.<h1>
Usage: Used for headings.
Top comments (0)