HTML TITLE

<title> tag is used to define the title of a webpage. This title appears in the browser's title bar or tab, and it is important for identifying the content of the page to both users and search engines. title
Explanation:
  • <!DOCTYPE html>: Specifies the document type and version of HTML.
  • <html lang="en"> : Defines the root element of the HTML document with the language set to English (en).
  • <head>: Contains meta-information about the HTML document, such as character set and page title.
  • <meta charset="UTF-8">: Specifies the character encoding for the document (UTF-8 supports most characters worldwide).
  • <title>: Sets the title of the webpage, displayed in the browser's title bar or tab.
  • <body>: Contains the visible content of the webpage.
  • <h1>and <p>: Example content within the body of the webpage.