HTML meta Tag | Character Set Encoding - Viewport Settings - Page Description - Author Information - Keywords - Example of HTML meta Tag
HTML <meta> Tag: The `<meta>` tag in HTML is used to provide metadata about the HTML document. Metadata is information about the data contained in the document, and it is not displayed on the web page itself. Instead, it provides information such as character set encoding, viewport settings for responsive design, and other details that browsers and search engines may use. Here are some common uses of the `<meta>` tag: Character Set Encoding: Specifies the character encoding for the document. It helps browsers interpret the text correctly. html <meta charset="UTF-8"> HTML meta Tag Viewport Settings: Used for responsive web design to control the viewport's behavior on different devices. html <meta name="viewport" content="width=device-width, initial-scale=1.0"> Page Description (for Search Engines): Provides a brief description of the document's content for search engines. html <meta name="description" ...