Posts

Showing posts from June, 2023

HTML – Meta Tags

Image
Meta tags are HTML elements that provide information about a webpage to search engines and web browsers. They are placed within the   <head>   section of an HTML document. Here are some examples of commonly used meta tags: Title Tag : Specifies the title of the webpage. It is displayed in the title bar of a browser and as the main headline in search engine results. 1 2 3 4 < head >    < title > My Webpage Title < / title > < / head >   Description Tag : Provides a brief description of the webpage’s content. It is often displayed as a snippet in search engine results. 1 2 3 4 < head >    < meta name = "description" content = "This is a brief description of my webpage." > < / head >   Keywords Tag : Specifies a list of keywords or phrases that are relevant to the webpage’s content. However, search engines nowadays typically don’t rely heavily on this tag for ranking purposes. 1 2 3 4 < head >    < meta name = &