<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Mbaziira</title>
    <description>The latest articles on DEV Community by Mbaziira (@mbaziira).</description>
    <link>https://dev.to/mbaziira</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1451621%2F75cb5e6b-c968-43c0-bd23-cc1834970858.png</url>
      <title>DEV Community: Mbaziira</title>
      <link>https://dev.to/mbaziira</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mbaziira"/>
    <language>en</language>
    <item>
      <title>What Are HTML Meta Tags And What Is Their Importance?</title>
      <dc:creator>Mbaziira</dc:creator>
      <pubDate>Sun, 05 May 2024 11:03:55 +0000</pubDate>
      <link>https://dev.to/mbaziira/what-are-html-meta-tags-and-what-is-their-importance-7l5</link>
      <guid>https://dev.to/mbaziira/what-are-html-meta-tags-and-what-is-their-importance-7l5</guid>
      <description>&lt;p&gt;When starting a simple web development project, you usually prefer plain HTML, CSS, and JavaScript rather than a front-end framework such as React or Vue. The most familiar step that follows is creating an HTML file and generating a boilerplate.&lt;/p&gt;

&lt;p&gt;The code in the boilerplate only includes the essential tags you need for an HTML document. And among these things are meta tags inside the head section of the document. Now, it's usual that you pay little or no attention to these tags. Many developers do not know what they are or their importance.&lt;/p&gt;

&lt;p&gt;In this article, you will learn what HTML Meta tags are, their importance to a web page, and how to use them in your HTML Markup. You will also learn which meta tags to prioritize in your Markup and why. &lt;/p&gt;

&lt;h2&gt;
  
  
  Prerequisites
&lt;/h2&gt;

&lt;p&gt;For you to follow along in this tutorial, you only need the knowledge of &lt;a href="https://developer.mozilla.org/en-US/docs/Learn/Getting_started_with_the_web/HTML_basics" rel="noopener noreferrer"&gt;HTML Basics.&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What are HTML Meta Tags?
&lt;/h2&gt;

&lt;p&gt;Meta tags are HTML elements that provide metadata about your HTML document. Metadata is data that describes other data. So, to put it plainly, HTML meta tags provide information about your HTML document or web page.&lt;/p&gt;

&lt;p&gt;The information that meta tags provide is mainly for browsers such as Chrome and Safari and Search engines such as Google and Bing. Browsers and Search engines use this information to understand the content on your web page.&lt;/p&gt;

&lt;p&gt;Meta tag information is not visible to website visitors. To include meta tags to your HTML document, you need to place them between the opening and closing head tags. Meta tags are void elements by nature.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;A void element is an element in HTML that cannot have any child nodes (i.e., nested elements or text nodes). Void elements only have a start tag; end tags must not be specified for void elements. (&lt;a href="https://developer.mozilla.org/en-US/docs/Glossary/Void_element" rel="noopener noreferrer"&gt;MDN&lt;/a&gt;)&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Below is an HTML boilerplate generated using Emmet with the head and body tags of the document. We place the meta tags inside the &lt;code&gt;&amp;lt;head&amp;gt;&lt;/code&gt; tag.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqh7ncty2pucwdsff8si0.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqh7ncty2pucwdsff8si0.png" alt="HTML Boiler plate" width="800" height="275"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;HTML meta tags convey information by use of attributes. This is where you put the information you want them to bear.&lt;/p&gt;

&lt;h2&gt;
  
  
  Examples of HTML Meta Tags
&lt;/h2&gt;

&lt;p&gt;Below are some of the meta tags in HTML.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Viewport meta tag&lt;/li&gt;
&lt;li&gt;Charset meta tag&lt;/li&gt;
&lt;li&gt;Author meta tag&lt;/li&gt;
&lt;li&gt;Description meta tag&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;We will look at each of the above meta tags in detail in the coming chapters. &lt;/p&gt;

&lt;h2&gt;
  
  
  HTML Meta-related Elements
&lt;/h2&gt;

&lt;p&gt;There are HTML elements that represent metadata but are not meta tags. These elements include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Title tag - &lt;code&gt;&amp;lt;title&amp;gt;&amp;lt;/title&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Style tag - &lt;code&gt;&amp;lt;style&amp;gt;&amp;lt;/style&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Script tag - &lt;code&gt;&amp;lt;script&amp;gt;&amp;lt;/script&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Link tag - &lt;code&gt;&amp;lt;link&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Base tag - &lt;code&gt;&amp;lt;base&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Meta tags carry metadata that cannot be represented by the above HTML Meta-related elements.&lt;/p&gt;

&lt;h2&gt;
  
  
  Attributes Accepted By Meta Tags
&lt;/h2&gt;

&lt;p&gt;As mentioned earlier, meta tags use attributes to convey information and can take in any global one. However, they are most associated with the following four:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;name&lt;/strong&gt;&lt;br&gt;
The &lt;code&gt;name&lt;/code&gt; attribute provides information that relates or applies to the entire HTML document. You use it with the &lt;code&gt;content&lt;/code&gt; attribute in terms of name-value pairs.&lt;/p&gt;

&lt;p&gt;The &lt;code&gt;name&lt;/code&gt; attribute gives the metadata name, while the &lt;code&gt;content&lt;/code&gt; attribute gives its value.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;content&lt;/strong&gt;&lt;br&gt;
The content attribute provides the value for the metadata of the &lt;code&gt;name&lt;/code&gt; or &lt;code&gt;http-equiv&lt;/code&gt; attributes.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;http-equiv&lt;/strong&gt;&lt;br&gt;
The full name for this attribute is &lt;code&gt;http-equivalent&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;The values it takes include &lt;em&gt;content-security-policy&lt;/em&gt;, &lt;em&gt;content-type&lt;/em&gt;, &lt;em&gt;default-style&lt;/em&gt;, and &lt;em&gt;refresh&lt;/em&gt;.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;This is because all the allowed values are names of particular HTTP headers. (&lt;a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta#attr-http-equiv" rel="noopener noreferrer"&gt;MDN&lt;/a&gt;)&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;charset&lt;/strong&gt;&lt;br&gt;
The &lt;code&gt;charset&lt;/code&gt; sets the character encoding of the HTML document. It usually takes in the value utf-8 because it is currently the only valid character encoding for HTML5 documents.&lt;/p&gt;
&lt;h2&gt;
  
  
  Advantages Of HTML Meta Tags
&lt;/h2&gt;

&lt;p&gt;HTML meta tags have tons of benefits for your web page. Let's take a look at some of them.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Meta tags can improve the Search Engine Optimization (SEO) ranking of your website by providing search engines with more information about your website's content, layout, and target.&lt;br&gt;&lt;br&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Open Graph meta tags can improve social sharing by supplying valuable descriptive media information about the web page's content. &lt;br&gt;
&lt;br&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;You can use meta tags to specify how different browsers should render your web pages, which ensures that your content doesn't break on various devices. &lt;br&gt;
&lt;br&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;You can use meta tags to protect your web applications from common security vulnerabilities by specifying security-related metadata like content security policies. &lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;
  
  
  Common HTML Meta Tags And Their Uses
&lt;/h2&gt;

&lt;p&gt;We'll now look at each meta tag individually in more details and its use. Let's dive in!&lt;/p&gt;
&lt;h3&gt;
  
  
  Charset Meta Tag
&lt;/h3&gt;

&lt;p&gt;The charset meta tag in HTML defines the character encoding of a web page.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;A character set is an encoding to let computers know how to recognize characters such as letters, numbers, punctuation marks, and whitespace. - &lt;a href="https://developer.mozilla.org/en-US/docs/Glossary/Character_set" rel="noopener noreferrer"&gt;MDN&lt;/a&gt; &lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;A character encoding is a system that maps bytes to text. Character encodings came to be because computers understand only binary data, 1s and 0s.&lt;/p&gt;

&lt;p&gt;The charset meta tag tells browsers which character encoding to use for a web page, thus enabling text to be displayed correctly even on different devices.&lt;/p&gt;

&lt;p&gt;If a web page renders with the wrong character encoding, it might produce broken characters that we refer to as &lt;a href="https://en.wikipedia.org/wiki/Mojibake" rel="noopener noreferrer"&gt;Mojibake&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fkg1kqfhqxsw5rtnpxzle.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fkg1kqfhqxsw5rtnpxzle.png" alt="Mojibake" width="800" height="265"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Format of a charset meta tag:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;meta&lt;/span&gt; &lt;span class="na"&gt;charset=&lt;/span&gt;&lt;span class="s"&gt;"character_set_name"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Example&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;head&amp;gt;&lt;/span&gt;
   &lt;span class="nt"&gt;&amp;lt;meta&lt;/span&gt; &lt;span class="na"&gt;charset=&lt;/span&gt;&lt;span class="s"&gt;"UTF-8"&lt;/span&gt;&lt;span class="nt"&gt;/&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/head&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;UTF-8 character encoding is used widely for its universal language support.&lt;/p&gt;

&lt;h2&gt;
  
  
  Author Meta Tag
&lt;/h2&gt;

&lt;p&gt;The author meta tag provides information on the author of a web page, usually the name or social media profile. This meta tag is optional.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Format&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;meta&lt;/span&gt; &lt;span class="na"&gt;name=&lt;/span&gt;&lt;span class="s"&gt;"author"&lt;/span&gt; &lt;span class="na"&gt;content=&lt;/span&gt;&lt;span class="s"&gt;"information on author"&lt;/span&gt;&lt;span class="nt"&gt;/&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Example&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;head&amp;gt;&lt;/span&gt;
   &lt;span class="nt"&gt;&amp;lt;meta&lt;/span&gt; &lt;span class="na"&gt;name=&lt;/span&gt;&lt;span class="s"&gt;"author"&lt;/span&gt; &lt;span class="na"&gt;content=&lt;/span&gt;&lt;span class="s"&gt;"Mbaziira Ronald"&lt;/span&gt;&lt;span class="nt"&gt;/&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/head&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Http-Equiv Meta Tag
&lt;/h2&gt;

&lt;p&gt;The http-equiv meta tag specifies an HTTP-Header for the HTML document. The HTTP-Header provides information to the browser on how to handle the HTML document, for example, the cache settings of the document.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Format&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;meta&lt;/span&gt; &lt;span class="na"&gt;http-equiv=&lt;/span&gt;&lt;span class="s"&gt;"HTTP-Header-name"&lt;/span&gt; &lt;span class="na"&gt;content=&lt;/span&gt;&lt;span class="s"&gt;"HTTP-Header-value"&lt;/span&gt;&lt;span class="nt"&gt;/&amp;gt;&lt;/span&gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Example&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;meta&lt;/span&gt; &lt;span class="na"&gt;http-equiv=&lt;/span&gt;&lt;span class="s"&gt;"X-UA-Compatible"&lt;/span&gt; &lt;span class="na"&gt;content=&lt;/span&gt;&lt;span class="s"&gt;"IE=edge"&lt;/span&gt;&lt;span class="nt"&gt;/&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Below are some of the header names (on the left) and some of their values (on the right) this meta tag takes in:&lt;/p&gt;

&lt;p&gt;Content-type: application/json and image/jpeg.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;X-UA-Compatible&lt;/strong&gt;: &lt;em&gt;IE=edge&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Refresh&lt;/strong&gt;: 5 (Any positive figure)&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Cache-Control&lt;/strong&gt;: &lt;em&gt;no-cache&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Let's take a look at a few details on these header names&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;X-UA-Compatible header&lt;/strong&gt;&lt;br&gt;
You will usually see the http-equiv meta tag in the below example among the meta tags when you generate an HTML boilerplate.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;meta&lt;/span&gt; &lt;span class="na"&gt;http-equiv=&lt;/span&gt;&lt;span class="s"&gt;"X-UA-Compatible"&lt;/span&gt; &lt;span class="na"&gt;content=&lt;/span&gt;&lt;span class="s"&gt;"IE=edge"&lt;/span&gt;&lt;span class="nt"&gt;/&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This particular header name X-UA-Compatible and its value IE=edge specify how the Internet Explorer browser should handle the HTML document. Microsoft laid the browser to rest in 2022.&lt;/p&gt;

&lt;p&gt;The header tells internet explorer which version of the browser to use to open the HTML document. The tag tells the browser to use Internet Explorer's latest version to render the HTML document, regardless of the one a user has on his machine.&lt;/p&gt;

&lt;p&gt;Around the time of writing this article, Microsoft had &lt;a href="https://learn.microsoft.com/en-us/lifecycle/announcements/internet-explorer-11-end-of-support" rel="noopener noreferrer"&gt;laid Internet Explorer to rest&lt;/a&gt;, the browser for which this meta tag aims.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Refresh header&lt;/strong&gt;&lt;br&gt;
One of the few tricks beginners usually like to play is with the refresh header which specifies after how many seconds the HTML web page should refresh.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;meta&lt;/span&gt; &lt;span class="na"&gt;http-equiv=&lt;/span&gt;&lt;span class="s"&gt;"refresh"&lt;/span&gt; &lt;span class="na"&gt;content=&lt;/span&gt;&lt;span class="s"&gt;"5"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Below is how it would like in the HTML file&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8jrkrmqp7s4myzx3hqg7.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8jrkrmqp7s4myzx3hqg7.png" alt="Refresh header" width="800" height="465"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It can also redirect to a specific URL after reloading.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;meta&lt;/span&gt; &lt;span class="na"&gt;http-equiv=&lt;/span&gt;&lt;span class="s"&gt;"refresh"&lt;/span&gt; &lt;span class="na"&gt;content=&lt;/span&gt;&lt;span class="s"&gt;"6;url=https://twitter.com"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Viewport Meta Tag
&lt;/h2&gt;

&lt;p&gt;The viewport meta tag is one of the most familiar meta tags. It sets the height, width, and zoom levels of the web page's viewport on mobile devices.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;A viewport is the part of the document you're viewing which is currently visible in its window (or the screen, if the document is being viewed in full screen mode). - &lt;a href="https://developer.mozilla.org/en-US/docs/Glossary/Viewport" rel="noopener noreferrer"&gt;MDN&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;Format&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;meta&lt;/span&gt; &lt;span class="na"&gt;name=&lt;/span&gt;&lt;span class="s"&gt;"viewport"&lt;/span&gt; &lt;span class="na"&gt;content=&lt;/span&gt;&lt;span class="s"&gt;"width=device-width, initial-scale=1"&lt;/span&gt; &lt;span class="nt"&gt;/&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The viewport meta tag is handy for optimizing web pages by specifying height, width, and zoom properties in its &lt;code&gt;content&lt;/code&gt; attribute, as most web pages are not mobile screen optimal.&lt;/p&gt;

&lt;p&gt;Among the properties it takes in, let's look at the following in more detail.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Width&lt;/em&gt;&lt;br&gt;
The width property controls the width of the viewport. Typically, developers assign the value of device-width equal to 100vw (viewport width). It ignores negative values.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;height&lt;/em&gt;&lt;br&gt;
The height property controls the height of the viewport. It has the value of device-height which is 100% of the viewport height. It also ignores negative values.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;initial-scale&lt;/em&gt;&lt;br&gt;
This property controls the zoom level of the viewport when it is first loaded. It has a default value of 1, a minimum value is 0.1, and a maximum of 10.&lt;/p&gt;
&lt;h2&gt;
  
  
  Description Meta Tag
&lt;/h2&gt;

&lt;p&gt;This meta tag provides a summary of the content on the web page. The summary is usually 160 characters or less. Search engines use this summary as a snippet that shows up in the search results together with the title of the web page.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Format&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;meta&lt;/span&gt; &lt;span class="na"&gt;name=&lt;/span&gt;&lt;span class="s"&gt;"description"&lt;/span&gt; &lt;span class="na"&gt;content=&lt;/span&gt;&lt;span class="s"&gt;"Write description of what your web page is about here"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The image below shows an example of a description on one my articles Google shows to the viewer during search.&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ffk57qwxv7cpnwl3u0yzy.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ffk57qwxv7cpnwl3u0yzy.png" alt="Meta tag description example" width="787" height="222"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You can check out this google article on &lt;a href="https://developers.google.com/search/docs/appearance/snippet" rel="noopener noreferrer"&gt;how to create unique descriptions for your web pages&lt;/a&gt;.&lt;/p&gt;
&lt;h2&gt;
  
  
  Open Graph Meta tags
&lt;/h2&gt;

&lt;p&gt;Open Graph meta tags (also known as OG meta tags) control the appearance of a web page when you share the URL on social media platforms like Twitter and LinkedIn.&lt;/p&gt;

&lt;p&gt;Let's take a look at the examples in the images below. The previews are of two of my Hashnode articles, &lt;a href="https://mbaziira.hashnode.dev/technical-writing-bits-what-exactly-are-sentence-fragments" rel="noopener noreferrer"&gt;What Exactly Are Sentence Fragments&lt;/a&gt; and &lt;a href="https://mbaziira.hashnode.dev/how-to-create-customizable-and-responsive-ui-components-using-tailwind" rel="noopener noreferrer"&gt;How To Create Responsive and Customizable UI Components Using Tailwind&lt;/a&gt;, shared on Twitter. The noticeable features of the previews are the articles' images, links, titles, and descriptions.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fs475t93jwdo16mz0kcui.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fs475t93jwdo16mz0kcui.png" alt="Sentence fragments article image" width="800" height="394"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6j48vz18aqwdi5ii942z.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6j48vz18aqwdi5ii942z.png" alt="Tailwind article image" width="800" height="394"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;OG meta tags take in the &lt;code&gt;property&lt;/code&gt; attribute, which specifies the open graph property related to the content. It is one of the indicators that a meta tag is an Open Graph meta tag. Some properties have extra optional properties that you can use alongside them.&lt;/p&gt;

&lt;p&gt;For the above previews to be possible, the OG meta tags use the Open Graph Protocol. The Open Graph Protocol has four expected properties for every web page if you are to use it.&lt;/p&gt;

&lt;p&gt;These are:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;og:title&lt;/li&gt;
&lt;li&gt;og:type&lt;/li&gt;
&lt;li&gt;og:image&lt;/li&gt;
&lt;li&gt;og:url&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ffgsf7wvu4shy8yzjftjs.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ffgsf7wvu4shy8yzjftjs.png" alt="Open Graph meta tags" width="800" height="225"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The above OG meta tags would resemble something like in the image below when in the HTML Markup.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fivc6v9jqxdnechenxg0r.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fivc6v9jqxdnechenxg0r.png" alt="OG meta tags" width="800" height="382"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;The Open Graph protocol enables any web page to become a rich object in a social graph. - &lt;a href="https://ogp.me/" rel="noopener noreferrer"&gt;Open Graph Protocol&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;em&gt;OG Title&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;The OG Title meta tag specifies the title for the web page to display in the web page preview on social media platforms.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Format&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;meta&lt;/span&gt; &lt;span class="na"&gt;property=&lt;/span&gt;&lt;span class="s"&gt;"og:title"&lt;/span&gt; &lt;span class="na"&gt;content=&lt;/span&gt;&lt;span class="s"&gt;"Web page title"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Example&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;meta&lt;/span&gt; &lt;span class="na"&gt;property=&lt;/span&gt;&lt;span class="s"&gt;"og:title"&lt;/span&gt; &lt;span class="na"&gt;content=&lt;/span&gt;&lt;span class="s"&gt;"How To Create Responsive And Customizable UI Components Using Tailwind"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The image below shows the OG Title of an article shared on Twitter.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fis5agjn8hpmya1duisgr.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fis5agjn8hpmya1duisgr.png" alt="OG title" width="800" height="394"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;OG Type&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;The OG Type Meta tag defines the type of content the web page contains. It can take in a couple of types but these are the most common ones:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;website&lt;/li&gt;
&lt;li&gt;article&lt;/li&gt;
&lt;li&gt;music&lt;/li&gt;
&lt;li&gt;video&lt;/li&gt;
&lt;li&gt;book&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It helps social media platforms understand the type of content you are sharing.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Format&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;meta&lt;/span&gt; &lt;span class="na"&gt;property=&lt;/span&gt;&lt;span class="s"&gt;"og:type"&lt;/span&gt; &lt;span class="na"&gt;content=&lt;/span&gt;&lt;span class="s"&gt;"type_value"&lt;/span&gt; &lt;span class="nt"&gt;/&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Example&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;meta&lt;/span&gt; &lt;span class="na"&gt;property=&lt;/span&gt;&lt;span class="s"&gt;"og:type"&lt;/span&gt; &lt;span class="na"&gt;content=&lt;/span&gt;&lt;span class="s"&gt;"article"&lt;/span&gt; &lt;span class="nt"&gt;/&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;em&gt;OG Description&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;The OG Description meta tag provides a summary or brief description of what the web page is about when you share it on social media platforms.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdk3nkxttsyzxvzc40w8a.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdk3nkxttsyzxvzc40w8a.png" alt="OG Description" width="800" height="394"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Format&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;meta&lt;/span&gt; &lt;span class="na"&gt;property=&lt;/span&gt;&lt;span class="s"&gt;"og:type"&lt;/span&gt; &lt;span class="na"&gt;content=&lt;/span&gt;&lt;span class="s"&gt;"write og description here"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Example&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;meta&lt;/span&gt; &lt;span class="na"&gt;property=&lt;/span&gt;&lt;span class="s"&gt;"og:type"&lt;/span&gt; &lt;span class="na"&gt;content=&lt;/span&gt;&lt;span class="s"&gt;"Learn how to create customizable, responsive, and captivating UI components using Tailwind CSS"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;em&gt;OG Image&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;The OG image meta tag specifies the image you want to display when you share your web page on social media platforms.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Format&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;meta&lt;/span&gt; &lt;span class="na"&gt;property=&lt;/span&gt;&lt;span class="s"&gt;"og:image"&lt;/span&gt; &lt;span class="na"&gt;content=&lt;/span&gt;&lt;span class="s"&gt;"image_url"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Example&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;meta&lt;/span&gt; &lt;span class="na"&gt;property=&lt;/span&gt;&lt;span class="s"&gt;"og:image"&lt;/span&gt; &lt;span class="na"&gt;content=&lt;/span&gt;&lt;span class="s"&gt;"https://example.com/ogimage.jpg"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The OG image meta tag can have more properties to which you can attach more metadata. These include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;og:image:width&lt;/li&gt;
&lt;li&gt;og:image:height&lt;/li&gt;
&lt;li&gt;og:image:alt&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Each of these properties is put in its meta tag and not the main one with the property of og:image.&lt;/p&gt;

&lt;p&gt;It would be like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;meta&lt;/span&gt; &lt;span class="na"&gt;property=&lt;/span&gt;&lt;span class="s"&gt;"og:image"&lt;/span&gt; &lt;span class="na"&gt;content=&lt;/span&gt;&lt;span class="s"&gt;"https://example.com/ogimage.jpg"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&amp;lt;meta&lt;/span&gt; &lt;span class="na"&gt;property=&lt;/span&gt;&lt;span class="s"&gt;"og:image:width"&lt;/span&gt; &lt;span class="na"&gt;content=&lt;/span&gt;&lt;span class="s"&gt;"400"&lt;/span&gt; &lt;span class="nt"&gt;/&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;meta&lt;/span&gt; &lt;span class="na"&gt;property=&lt;/span&gt;&lt;span class="s"&gt;"og:image:height"&lt;/span&gt; &lt;span class="na"&gt;content=&lt;/span&gt;&lt;span class="s"&gt;"300"&lt;/span&gt; &lt;span class="nt"&gt;/&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;meta&lt;/span&gt; &lt;span class="na"&gt;property=&lt;/span&gt;&lt;span class="s"&gt;"og:image:alt"&lt;/span&gt; &lt;span class="na"&gt;content=&lt;/span&gt;&lt;span class="s"&gt;"A cover with the title of the article"&lt;/span&gt; &lt;span class="nt"&gt;/&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The &lt;code&gt;og:image:width&lt;/code&gt; and &lt;code&gt;og:image:height&lt;/code&gt; are in pixels.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fuhtfhsxi60pdjai5f60z.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fuhtfhsxi60pdjai5f60z.png" alt="OG Image" width="800" height="394"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;OG Url&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;The OG Url meta tag specifies the canonical URL for the web page.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;A canonical URL is the URL of the best representative page from a group of duplicate pages. - &lt;a href="https://support.google.com/webmasters/answer/10347851?hl=en" rel="noopener noreferrer"&gt;Source&lt;/a&gt; &lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Why a canonical URL, I hear you ask? Well, it's because pages can have duplicates, and among these, you would like a particular web page URL to be indexed by search engines rather than one of the others such that its ranking is not affected. For articles, it is usually the original post.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Format&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;meta&lt;/span&gt; &lt;span class="na"&gt;property=&lt;/span&gt;&lt;span class="s"&gt;"og:url"&lt;/span&gt; &lt;span class="na"&gt;content=&lt;/span&gt;&lt;span class="s"&gt;"canonical URL"&lt;/span&gt; &lt;span class="nt"&gt;/&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Example&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;meta&lt;/span&gt; &lt;span class="na"&gt;property=&lt;/span&gt;&lt;span class="s"&gt;"og:url"&lt;/span&gt; &lt;span class="na"&gt;content=&lt;/span&gt;&lt;span class="s"&gt;"https://mbaziira.hashnode.dev/how-to-create-customizable-and-responsive-ui-components-using-tailwind"&lt;/span&gt;&lt;span class="nt"&gt;/&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;em&gt;OG Site name&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;The OG Site name meta tag indicates the name of the website, brand, or company. This OG site name meta tag is optional.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Format&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;meta&lt;/span&gt; &lt;span class="na"&gt;property=&lt;/span&gt;&lt;span class="s"&gt;"og:site_name"&lt;/span&gt; &lt;span class="na"&gt;content=&lt;/span&gt;&lt;span class="s"&gt;"Write site name, company or brand name here"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Example&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;meta&lt;/span&gt; &lt;span class="na"&gt;property=&lt;/span&gt;&lt;span class="s"&gt;"og:site_name"&lt;/span&gt; &lt;span class="na"&gt;content=&lt;/span&gt;&lt;span class="s"&gt;"Tweetos"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;There are more advantages and examples of HTML meta tags than the ones we have covered here. I implore you to take the knowledge you have gained to the next level by practicing using meta tags in your Markup.&lt;/p&gt;

&lt;p&gt;You will understand the importance of meta tags and how they work much better when you start using them in your projects.&lt;/p&gt;

&lt;p&gt;For any questions or anything you wish to comment on, kindly leave it in the comments below. Thanks for taking a read. See you soon!&lt;/p&gt;

</description>
      <category>html</category>
      <category>css</category>
      <category>metatags</category>
      <category>tutorial</category>
    </item>
  </channel>
</rss>
