{"id":452,"date":"2021-07-15T13:27:00","date_gmt":"2021-07-15T07:57:00","guid":{"rendered":"https:\/\/wpproonline.com\/?p=452"},"modified":"2026-02-26T10:46:15","modified_gmt":"2026-02-26T10:46:15","slug":"chapter-33-meta-information","status":"publish","type":"post","link":"https:\/\/www.digitalhubz.com\/blog\/chapter-33-meta-information\/","title":{"rendered":"Chapter 33: Meta Information"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Meta tags in HTML documents provide useful information about the document including a description, keywords,<br \/>author, dates of modifications and around 90 other fields. This topic covers the usage and purpose of these tags.<\/p>\n\n<p><!--more--><\/p>\n\n<h2 class=\"wp-block-heading\" id=\"h-page-information\">Page Information<\/h2>\n\n<p class=\"wp-block-paragraph\"><strong>application-name<\/strong><\/p>\n\n<p class=\"wp-block-paragraph\">Giving the name of the Web application that the page represents.<\/p>\n\n<pre data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">&lt;meta name=\"application-name\" content=\"OpenStreetMap\"&gt;<\/pre>\n\n<p class=\"wp-block-paragraph\">If it\u2019s not a Web application, the application-name meta tag must not be used.<\/p>\n\n<p class=\"wp-block-paragraph\"><strong>author<\/strong><\/p>\n\n<p class=\"wp-block-paragraph\">Set the author of the page:<\/p>\n\n<pre data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">&lt;meta name=\"author\" content=\"Your Name\"&gt;\n<\/pre>\n\n<p class=\"wp-block-paragraph\">Only one name can be given.<\/p>\n\n<p class=\"wp-block-paragraph\"><strong>description<\/strong><\/p>\n\n<p class=\"wp-block-paragraph\">Set the description of the page:<\/p>\n\n<pre data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">&lt;meta name=\"description\" content=\"Page Description\"&gt;<\/pre>\n\n<p class=\"wp-block-paragraph\">The description meta tag can be used by various search engines while indexing your web page for searching<br \/>purpose. Usually, the description contained within the meta tag is the short summary that shows up under the<br \/>page\/website&#8217;s main title in the search engine results. Google usually uses only the first 20-25 words of your<br \/>description.<\/p>\n\n<p class=\"wp-block-paragraph\"><strong>generator<\/strong><\/p>\n\n<pre data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">&lt;meta name=\"generator\" content=\"HTML Generator 1.42\"&gt;<\/pre>\n\n<p class=\"wp-block-paragraph\">Identifies one of the software packages used to generate the document. Only to be used for pages where the<br \/>markup is automatically generated.<\/p>\n\n<p class=\"wp-block-paragraph\"><strong>keywords<\/strong><\/p>\n\n<p class=\"wp-block-paragraph\">Set keywords for search engines (comma-separated):<\/p>\n\n<pre data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">&lt;meta name=\"keywords\" content=\"Keyword1, Keyword2\"&gt;<\/pre>\n\n<p class=\"wp-block-paragraph\">The keywords meta tag is sometimes used by search engines to know the search query which is relevant to your<br \/>web page.<br \/>As a rule of thumb, it is probably a good idea to not add too many words, as most search engines that use this meta<br \/>tag for indexing will only index the first ~20 words. Make sure that you put the most important keywords first.<\/p>\n\n<h2 class=\"wp-block-heading\" id=\"h-character-encoding\">Character Encoding<\/h2>\n\n<p class=\"wp-block-paragraph\">The charset attribute specifies the character encoding for the HTML document and needs to be a valid characterGoalKicker.com \u2013 HTML5 Notes for Professionals 86<br \/>encoding (examples include <em>windows<\/em>-1252, ISO-8859-2, <em>Shift_JIS<\/em>, and UTF-8). UTF-8 (Unicode) is the most widely<br \/>used and should be used for any new project.<\/p>\n\n<p class=\"wp-block-paragraph\">Version = 5<\/p>\n\n<pre data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">&lt;meta charset=\"UTF-8\"&gt;\n&lt;meta charset=\"ISO-8859-1\"&gt;<\/pre>\n\n<p class=\"wp-block-paragraph\">All browsers have always recognized the <strong><em>&lt;meta<\/em><\/strong> <em>charset<\/em><strong><em>&gt;<\/em><\/strong> form, but if you for some reason need your page to be<br \/>valid HTML 4.01, you can use the following instead:<\/p>\n\n<pre data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">&lt;meta http-equiv=\"content-type\" content=\"text\/html; charset=UTF-8\"&gt;\n&lt;meta http-equiv=\"content-type\" content=\"text\/html; charset=ISO-8859-1\"&gt;\n<\/pre>\n\n<p class=\"wp-block-paragraph\">See also the <a href=\"https:\/\/encoding.spec.whatwg.org\/#names-and-labels\">Encoding Standard<\/a>, to view all available character encoding labels that browsers recognize.<\/p>\n\n<h2 class=\"wp-block-heading\" id=\"h-robots\">Robots<\/h2>\n\n<p class=\"wp-block-paragraph\">The robots attribute, supported by several major search engines, controls whether search engine spiders are<br \/>allowed to index a page or not and whether they should follow links from a page or not.<\/p>\n\n<pre data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">&lt;meta name=\"robots\" content=\"noindex\"&gt;\n<\/pre>\n\n<p class=\"wp-block-paragraph\">This example instructs all search engines to not show the page in search results. Other allowed values are:<\/p>\n\n<figure>\n<table>\n<tbody>\n<tr>\n<td><strong>Value\/Directive<\/strong><\/td>\n<td><strong>Meaning<\/strong><\/td>\n<\/tr>\n<tr>\n<td><em>all<\/em><\/td>\n<td><strong>Default<\/strong>. Equivalent to index, follow. See note below.<\/td>\n<\/tr>\n<tr>\n<td><em>noindex<\/em><\/td>\n<td>Do not index the page at all.<\/td>\n<\/tr>\n<tr>\n<td><em>nofollow<\/em><\/td>\n<td>Do not follow the links on this page<\/td>\n<\/tr>\n<tr>\n<td><em>follow<\/em><\/td>\n<td>The links on the page can be followed. See note below.<\/td>\n<\/tr>\n<tr>\n<td><em>none<\/em><\/td>\n<td>Equivalent to noindex, nofollow.<\/td>\n<\/tr>\n<tr>\n<td><em>noarchive<\/em><\/td>\n<td>Do not make a cached version of this page available in search results.<\/td>\n<\/tr>\n<tr>\n<td><em>nocache<\/em><\/td>\n<td>Synonym of noarchive used by some bots such as Bing.<\/td>\n<\/tr>\n<tr>\n<td><em>nosnippet<\/em><\/td>\n<td>Do not show a snippet of this page in search results.<\/td>\n<\/tr>\n<tr>\n<td><em>noodp<\/em><\/td>\n<td>Do not use metadata of this page from the Open Directory project for titles or<br \/>snippets in search results.<\/td>\n<\/tr>\n<tr>\n<td><em>notranslate<\/em><\/td>\n<td>Do not offer translations of this page in search results.<\/td>\n<\/tr>\n<tr>\n<td><em>noimageindex<\/em><\/td>\n<td>Do not index images on this page.<\/td>\n<\/tr>\n<tr>\n<td><em>unavailable_after [RFC-850<br \/>date\/time]<\/em><\/td>\n<td>Do not show this page in search results after the specified date\/time. The<br \/>date\/time must be specified in the RFC 850 format.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/figure>\n\n<p class=\"wp-block-paragraph\"><strong>Note:<\/strong> Explicitly defining index and\/or follow, while valid values, is not necessary as pretty much all search engines<br \/>will assume they are allowed to do so if not explicitly prevented from doing so. Similar to how the robots.txt file<br \/>operates, search engines generally only look for things they are not allowed to do. Only stating things a search<br \/>engine isn&#8217;t allowed to do also prevents accidentally stating opposites (such as index, \u2026, noindex) which not all<br \/>search engines will treat in the same way.<\/p>\n\n<h2 class=\"wp-block-heading\" id=\"h-social-media\">Social Media<\/h2>\n\n<p class=\"wp-block-paragraph\">Open Graph is a standard for metadata that extends the normal information contained within a site&#8217;s head<br \/>markup. This enables websites such as Facebook to display deeper and richer information about a website in a<br \/>structured format. This information is then automatically displayed when users share links to websites containing<br \/>OG metadata on Facebook.<\/p>\n\n<p class=\"wp-block-paragraph\"><strong>Facebook \/ Open Graph<\/strong><\/p>\n\n<pre data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">&lt;meta property=\"fb:app_id\" content=\"123456789\"&gt;\n&lt;meta property=\"og:url\" content=\"https:\/\/example.com\/page.html\"&gt;\n&lt;meta property=\"og:type\" content=\"website\"&gt;\n&lt;meta property=\"og:title\" content=\"Content Title\"&gt;\n&lt;meta property=\"og:image\" content=\"https:\/\/example.com\/image.jpg\"&gt;\n&lt;meta property=\"og:description\" content=\"Description Here\"&gt;\n&lt;meta property=\"og:site_name\" content=\"Site Name\"&gt;\n&lt;meta property=\"og:locale\" content=\"en_US\"&gt;\n&lt;meta property=\"article:author\" content=\"\"&gt;\n&lt;!-- Facebook: https:\/\/developers.facebook.com\/docs\/sharing\/webmasters#markup --&gt;\n&lt;!-- Open Graph: http:\/\/ogp.me\/ --&gt;\n<\/pre>\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/developers.facebook.com\/docs\/sharing\/webmasters#markup\">Facebook Open Graph Markup<\/a><\/li>\n<li><a href=\"http:\/\/ogp.me\/\">Open Graph Protocol<\/a><\/li>\n<\/ul>\n\n<p class=\"wp-block-paragraph\"><strong>Facebook \/ Instant Articles<\/strong><\/p>\n\n<pre data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">&lt;meta charset=\"utf-8\"&gt;\n&lt;meta property=\"op:markup_version\" content=\"v1.0\"&gt;\n&lt;!-- The URL of the web version of your article --&gt;\n&lt;link rel=\"canonical\" href=\"http:\/\/example.com\/article.html\"&gt;\n&lt;!-- The style to be used for this article --&gt;\n&lt;meta property=\"fb:article_style\" content=\"myarticlestyle\"&gt;\n<\/pre>\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/developers.facebook.com\/docs\/instant-articles\/guides\/articlecreate\">Facebook Instant Articles: Creating Articles<\/a><\/li>\n<li><a href=\"https:\/\/developers.facebook.com\/docs\/instant-articles\/reference\">Instant Articles: Format Reference<\/a><\/li>\n<\/ul>\n\n<p class=\"wp-block-paragraph\">Twitter uses its own markup for metadata. This metadata is used as information to control how tweets are<br \/>displayed when they contain a link to the site.<\/p>\n\n<p class=\"wp-block-paragraph\"><strong>Twitter<\/strong><\/p>\n\n<pre data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">&lt;meta name=\"twitter:card\" content=\"summary\"&gt;\n&lt;meta name=\"twitter:site\" content=\"@site_account\"&gt;\n&lt;meta name=\"twitter:creator\" content=\"@individual_account\"&gt;\n&lt;meta name=\"twitter:url\" content=\"https:\/\/example.com\/page.html\"&gt;\n&lt;meta name=\"twitter:title\" content=\"Content Title\"&gt;\n&lt;meta name=\"twitter:description\" content=\"Content description less than 200 characters\"&gt;\n&lt;meta name=\"twitter:image\" content=\"https:\/\/example.com\/image.jpg\"&gt;<\/pre>\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/dev.twitter.com\/cards\/getting-started\">Twitter Cards: Getting Started Guide<\/a><\/li>\n<li><a href=\"https:\/\/dev.twitter.com\/docs\/cards\/validation\/validator\">Twitter Card Validator<\/a><\/li>\n<\/ul>\n\n<p class=\"wp-block-paragraph\"><strong>Google+ \/ Schema.org<\/strong><\/p>\n\n<pre data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">&lt;link href=\"https:\/\/plus.google.com\/+YourPage\" rel=\"publisher\"&gt;\n&lt;meta itemprop=\"name\" content=\"Content Title\"&gt;\n&lt;meta itemprop=\"description\" content=\"Content description less than 200 characters\"&gt;\n&lt;meta itemprop=\"image\" content=\"https:\/\/example.com\/image.jpg\"&gt;\n<\/pre>\n\n<h2 class=\"wp-block-heading\" id=\"h-mobile-layout-control\">Mobile Layout Control<\/h2>\n\n<p class=\"wp-block-paragraph\">Common mobile-optimized sites use the <strong><em>&lt;meta<\/em><\/strong> <em>name=&#8221;viewport&#8221;<strong>&gt;<\/strong><\/em> tag like this:<\/p>\n\n<pre data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">&lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"&gt;<\/pre>\n\n<p class=\"wp-block-paragraph\">The <em>viewport<\/em> element gives the browser instructions on how to control the page&#8217;s dimensions and scaling based<br \/>on the device you are using.<\/p>\n\n<p class=\"wp-block-paragraph\">In the above example, <em>content=&#8221;width=device-width<\/em> means that the browser will render the width of the page at<br \/>the width of its own screen. So if that screen is <em>480px wide<\/em>, the browser window will be <em>480px wide. initial scale=1<\/em> depicts that the initial zoom (which is 1 in this case, means it does not zoom).<\/p>\n\n<p class=\"wp-block-paragraph\">Below are the attributes this tag supports:<\/p>\n\n<figure>\n<table>\n<tbody>\n<tr>\n<td><strong>Attribute<\/strong><\/td>\n<td><strong>Description<\/strong><\/td>\n<\/tr>\n<tr>\n<td><em>width<\/em><\/td>\n<td>The width of the virtual viewport of the device.<br \/>Values1: device-width or the actual width in pixels, like 480<\/td>\n<\/tr>\n<tr>\n<td><em>height<\/em><\/td>\n<td>The height of the virtual viewport of the device.<br \/>Values2: device-height or the actual width in pixels, like 600<\/td>\n<\/tr>\n<tr>\n<td><em>initial-scale<\/em><\/td>\n<td>The initial zoom when the page is loaded. 1.0 does not zoom.<\/td>\n<\/tr>\n<tr>\n<td><em>minimum-scale<\/em><\/td>\n<td>The minimum amount the visitor can zoom on the page. 1.0 does not zoom.<\/td>\n<\/tr>\n<tr>\n<td><em>maximum-scale<\/em><\/td>\n<td>The maximum amount the visitor can zoom on the page. 1.0 does not zoom.<\/td>\n<\/tr>\n<tr>\n<td><em>user-scalable<\/em><\/td>\n<td>Allows the device to zoom in and out. Values are yes or no. If set to no, the user is not able to zoom in the webpage. The default is yes. Browser settings can ignore this rule.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/figure>\n\n<p class=\"wp-block-paragraph\"><strong>Notes:<\/strong><\/p>\n\n<p class=\"wp-block-paragraph\">1 The width property can be either specified in pixels (<em>width=600<\/em>) or by device-width (<em>width=device-width<\/em>) which<br \/>represents the physical width of the device&#8217;s screen.<\/p>\n\n<p class=\"wp-block-paragraph\">2 Similarly, the height property can be either specified in pixels (<em>height<\/em>=600) or by device-<em>height<\/em><br \/>(<em>height=device-height<\/em>) which represents the physical height of the device&#8217;s screen.<\/p>\n\n<h2 class=\"wp-block-heading\" id=\"h-automatic-refresh\">Automatic Refresh<\/h2>\n\n<p class=\"wp-block-paragraph\">To refresh the page every five seconds, add this meta element in the head element:<\/p>\n\n<pre data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">&lt;meta http-equiv=\"refresh\" content=\"5\"&gt;\n<\/pre>\n\n<p class=\"wp-block-paragraph\"><strong>CAUTION!<\/strong> While this is a valid command, it is recommended that you do not use it because of its negative effects<br \/>on user experience. Refreshing the page too often can cause it to become unresponsive, and often scrolls to the<br \/>top of the page. If some information on the page needs to be updated continuously, there are much better ways to<br \/>do that by only refreshing a portion of a page.<\/p>\n\n<h2 class=\"wp-block-heading\" id=\"h-phone-number-recognition\">Phone Number Recognition<\/h2>\n\n<p class=\"wp-block-paragraph\">Mobile platforms like iOS automatically recognize phone numbers and turn them into tel: links. While the feature<br \/>is very practical, the system sometimes detects ISBN codes and other numbers as telephone numbers.<\/p>\n\n<p class=\"wp-block-paragraph\">For mobile Safari and some other WebKit-based mobile browsers to turn off automatic phone number recognition<br \/>and formatting, you need this meta tag:<\/p>\n\n<pre data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">&lt;meta name=\"format-detection\" content=\"telephone=no\"&gt;\n<\/pre>\n\n<h2 class=\"wp-block-heading\" id=\"h-automatic-redirect\">Automatic redirect<\/h2>\n\n<p class=\"wp-block-paragraph\">Sometimes your webpage needs a automatic redirect.<\/p>\n\n<p class=\"wp-block-paragraph\">For example, to redirect to example.com after 5 seconds:<\/p>\n\n<pre data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">&lt;meta http-equiv=\"refresh\" content=\"5;url=https:\/\/www.example.com\/\" \/&gt;\n<\/pre>\n\n<p class=\"wp-block-paragraph\">This is line will send you to the designated website (in this case example.com after 5 seconds.<\/p>\n\n<p class=\"wp-block-paragraph\">If you need to change the time delay before a redirect, simply changing the number right before your ;url= will<br \/>alter the time delay.<\/p>\n\n<h2 class=\"wp-block-heading\" id=\"h-web-app\">Web App<\/h2>\n\n<p class=\"wp-block-paragraph\">You can set up your web app or website to have an application shortcut icon added to a device&#8217;s homescreen, and<br \/>have the app launch in full-screen &#8220;app mode&#8221; using Chrome for Android\u2019s <a href=\"https:\/\/developer.chrome.com\/multidevice\/android\/installtohomescreen\">&#8220;Add to homescreen&#8221;<\/a> menu item.<\/p>\n\n<p class=\"wp-block-paragraph\">Below meta tag(s) will open web app in full-screen mode (without address bar).<br \/>Android Chrome<\/p>\n\n<pre data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">&lt;meta name=\"mobile-web-app-capable\" content=\"yes\"&gt;<\/pre>\n\n<p class=\"wp-block-paragraph\">IOS<\/p>\n\n<pre data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">&lt;meta name=\"apple-mobile-web-app-capable\" content=\"yes\"&gt;<\/pre>\n\n<p class=\"wp-block-paragraph\">You can also set color for status bar and address bar in meta tag.<br \/>Android Chrome<\/p>\n\n<pre data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">&lt;meta name=\"theme-color\" content=\"black\"&gt;<\/pre>\n\n<p class=\"wp-block-paragraph\">IOS<\/p>\n\n<pre data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">&lt;meta name=\"apple-mobile-web-app-status-bar-style\" content=\"black\"&gt;<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Meta tags in HTML documents provide useful information about the document including a description, keywords,author, dates of modifications and around 90 other fields. This topic covers the usage and purpose&hellip;<\/p>\n","protected":false},"author":1,"featured_media":52448,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[73,76,111,77],"tags":[110,112,136,154,113],"class_list":["post-452","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-css","category-html","category-html-5-notes-for-professional","category-javascript","tag-html-5-notes","tag-html-5-tutorial","tag-html-resources","tag-html-with-css","tag-html5"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.0 (Yoast SEO v27.9) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Chapter 33: Meta Information - DigitalHubZ<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.digitalhubz.com\/blog\/chapter-33-meta-information\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Chapter 33: Meta Information\" \/>\n<meta property=\"og:description\" content=\"Meta tags in HTML documents provide useful information about the document including a description, keywords,author, dates of modifications and around 90 other fields. This topic covers the usage and purpose&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.digitalhubz.com\/blog\/chapter-33-meta-information\/\" \/>\n<meta property=\"og:site_name\" content=\"DigitalHubZ\" \/>\n<meta property=\"article:published_time\" content=\"2021-07-15T07:57:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-26T10:46:15+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.digitalhubz.com\/blog\/wp-content\/uploads\/2021\/07\/HTML-5-Notes-For-Professional-Chapter-33.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"945\" \/>\n\t<meta property=\"og:image:height\" content=\"394\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"DigitalHubZ\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"DigitalHubZ\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/chapter-33-meta-information\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/chapter-33-meta-information\\\/\"},\"author\":{\"name\":\"DigitalHubZ\",\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/#\\\/schema\\\/person\\\/5a4074d837d6e5d22d665e5b7ca9e873\"},\"headline\":\"Chapter 33: Meta Information\",\"datePublished\":\"2021-07-15T07:57:00+00:00\",\"dateModified\":\"2026-02-26T10:46:15+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/chapter-33-meta-information\\\/\"},\"wordCount\":1266,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/chapter-33-meta-information\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/07\\\/HTML-5-Notes-For-Professional-Chapter-33.jpg\",\"keywords\":[\"HTML 5 Notes\",\"HTML 5 Tutorial\",\"HTML Resources\",\"HTML with CSS\",\"HTML5\"],\"articleSection\":[\"CSS\",\"HTML\",\"HTML 5 Notes For Professional\",\"Javascript\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/chapter-33-meta-information\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/chapter-33-meta-information\\\/\",\"url\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/chapter-33-meta-information\\\/\",\"name\":\"Chapter 33: Meta Information - DigitalHubZ\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/chapter-33-meta-information\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/chapter-33-meta-information\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/07\\\/HTML-5-Notes-For-Professional-Chapter-33.jpg\",\"datePublished\":\"2021-07-15T07:57:00+00:00\",\"dateModified\":\"2026-02-26T10:46:15+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/chapter-33-meta-information\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/chapter-33-meta-information\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/chapter-33-meta-information\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/07\\\/HTML-5-Notes-For-Professional-Chapter-33.jpg\",\"contentUrl\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/07\\\/HTML-5-Notes-For-Professional-Chapter-33.jpg\",\"width\":945,\"height\":394},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/chapter-33-meta-information\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Chapter 33: Meta Information\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/\",\"name\":\"DigitalHubZ\",\"description\":\"Future-Ready Digital Solutions\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/#organization\",\"name\":\"DigitalHubZ\",\"url\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/digitalhubz.webp\",\"contentUrl\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/digitalhubz.webp\",\"width\":1232,\"height\":369,\"caption\":\"DigitalHubZ\"},\"image\":{\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/#\\\/schema\\\/person\\\/5a4074d837d6e5d22d665e5b7ca9e873\",\"name\":\"DigitalHubZ\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/414c5bb85907e15e0f840541718ecc7420d52ea432b33f6a57761a674a52ebb7?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/414c5bb85907e15e0f840541718ecc7420d52ea432b33f6a57761a674a52ebb7?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/414c5bb85907e15e0f840541718ecc7420d52ea432b33f6a57761a674a52ebb7?s=96&d=mm&r=g\",\"caption\":\"DigitalHubZ\"},\"sameAs\":[\"https:\\\/\\\/digitalhubz.com\"],\"url\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/author\\\/digi_v1_wp\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Chapter 33: Meta Information - DigitalHubZ","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.digitalhubz.com\/blog\/chapter-33-meta-information\/","og_locale":"en_US","og_type":"article","og_title":"Chapter 33: Meta Information","og_description":"Meta tags in HTML documents provide useful information about the document including a description, keywords,author, dates of modifications and around 90 other fields. This topic covers the usage and purpose&hellip;","og_url":"https:\/\/www.digitalhubz.com\/blog\/chapter-33-meta-information\/","og_site_name":"DigitalHubZ","article_published_time":"2021-07-15T07:57:00+00:00","article_modified_time":"2026-02-26T10:46:15+00:00","og_image":[{"width":945,"height":394,"url":"https:\/\/www.digitalhubz.com\/blog\/wp-content\/uploads\/2021\/07\/HTML-5-Notes-For-Professional-Chapter-33.jpg","type":"image\/jpeg"}],"author":"DigitalHubZ","twitter_card":"summary_large_image","twitter_misc":{"Written by":"DigitalHubZ","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.digitalhubz.com\/blog\/chapter-33-meta-information\/#article","isPartOf":{"@id":"https:\/\/www.digitalhubz.com\/blog\/chapter-33-meta-information\/"},"author":{"name":"DigitalHubZ","@id":"https:\/\/www.digitalhubz.com\/blog\/#\/schema\/person\/5a4074d837d6e5d22d665e5b7ca9e873"},"headline":"Chapter 33: Meta Information","datePublished":"2021-07-15T07:57:00+00:00","dateModified":"2026-02-26T10:46:15+00:00","mainEntityOfPage":{"@id":"https:\/\/www.digitalhubz.com\/blog\/chapter-33-meta-information\/"},"wordCount":1266,"commentCount":0,"publisher":{"@id":"https:\/\/www.digitalhubz.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.digitalhubz.com\/blog\/chapter-33-meta-information\/#primaryimage"},"thumbnailUrl":"https:\/\/www.digitalhubz.com\/blog\/wp-content\/uploads\/2021\/07\/HTML-5-Notes-For-Professional-Chapter-33.jpg","keywords":["HTML 5 Notes","HTML 5 Tutorial","HTML Resources","HTML with CSS","HTML5"],"articleSection":["CSS","HTML","HTML 5 Notes For Professional","Javascript"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.digitalhubz.com\/blog\/chapter-33-meta-information\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.digitalhubz.com\/blog\/chapter-33-meta-information\/","url":"https:\/\/www.digitalhubz.com\/blog\/chapter-33-meta-information\/","name":"Chapter 33: Meta Information - DigitalHubZ","isPartOf":{"@id":"https:\/\/www.digitalhubz.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.digitalhubz.com\/blog\/chapter-33-meta-information\/#primaryimage"},"image":{"@id":"https:\/\/www.digitalhubz.com\/blog\/chapter-33-meta-information\/#primaryimage"},"thumbnailUrl":"https:\/\/www.digitalhubz.com\/blog\/wp-content\/uploads\/2021\/07\/HTML-5-Notes-For-Professional-Chapter-33.jpg","datePublished":"2021-07-15T07:57:00+00:00","dateModified":"2026-02-26T10:46:15+00:00","breadcrumb":{"@id":"https:\/\/www.digitalhubz.com\/blog\/chapter-33-meta-information\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.digitalhubz.com\/blog\/chapter-33-meta-information\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.digitalhubz.com\/blog\/chapter-33-meta-information\/#primaryimage","url":"https:\/\/www.digitalhubz.com\/blog\/wp-content\/uploads\/2021\/07\/HTML-5-Notes-For-Professional-Chapter-33.jpg","contentUrl":"https:\/\/www.digitalhubz.com\/blog\/wp-content\/uploads\/2021\/07\/HTML-5-Notes-For-Professional-Chapter-33.jpg","width":945,"height":394},{"@type":"BreadcrumbList","@id":"https:\/\/www.digitalhubz.com\/blog\/chapter-33-meta-information\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.digitalhubz.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Chapter 33: Meta Information"}]},{"@type":"WebSite","@id":"https:\/\/www.digitalhubz.com\/blog\/#website","url":"https:\/\/www.digitalhubz.com\/blog\/","name":"DigitalHubZ","description":"Future-Ready Digital Solutions","publisher":{"@id":"https:\/\/www.digitalhubz.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.digitalhubz.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.digitalhubz.com\/blog\/#organization","name":"DigitalHubZ","url":"https:\/\/www.digitalhubz.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.digitalhubz.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.digitalhubz.com\/blog\/wp-content\/uploads\/2023\/03\/digitalhubz.webp","contentUrl":"https:\/\/www.digitalhubz.com\/blog\/wp-content\/uploads\/2023\/03\/digitalhubz.webp","width":1232,"height":369,"caption":"DigitalHubZ"},"image":{"@id":"https:\/\/www.digitalhubz.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.digitalhubz.com\/blog\/#\/schema\/person\/5a4074d837d6e5d22d665e5b7ca9e873","name":"DigitalHubZ","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/414c5bb85907e15e0f840541718ecc7420d52ea432b33f6a57761a674a52ebb7?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/414c5bb85907e15e0f840541718ecc7420d52ea432b33f6a57761a674a52ebb7?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/414c5bb85907e15e0f840541718ecc7420d52ea432b33f6a57761a674a52ebb7?s=96&d=mm&r=g","caption":"DigitalHubZ"},"sameAs":["https:\/\/digitalhubz.com"],"url":"https:\/\/www.digitalhubz.com\/blog\/author\/digi_v1_wp\/"}]}},"_links":{"self":[{"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/posts\/452","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/comments?post=452"}],"version-history":[{"count":4,"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/posts\/452\/revisions"}],"predecessor-version":[{"id":54856,"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/posts\/452\/revisions\/54856"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/media\/52448"}],"wp:attachment":[{"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/media?parent=452"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/categories?post=452"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/tags?post=452"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}