<?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: gauharnawab</title>
    <description>The latest articles on DEV Community by gauharnawab (@gauharnawab).</description>
    <link>https://dev.to/gauharnawab</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%2F705307%2F934ace99-d78c-4fa3-86e8-f15155264aa6.png</url>
      <title>DEV Community: gauharnawab</title>
      <link>https://dev.to/gauharnawab</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/gauharnawab"/>
    <language>en</language>
    <item>
      <title>Getting Started with Chart.js – Make Beautiful Charts with Just a Few Lines of Code</title>
      <dc:creator>gauharnawab</dc:creator>
      <pubDate>Tue, 03 Jun 2025 05:51:34 +0000</pubDate>
      <link>https://dev.to/gauharnawab/getting-started-with-chartjs-make-beautiful-charts-with-just-a-few-lines-of-code-2hoo</link>
      <guid>https://dev.to/gauharnawab/getting-started-with-chartjs-make-beautiful-charts-with-just-a-few-lines-of-code-2hoo</guid>
      <description>&lt;h2&gt;
  
  
  Hey there, aspiring developers! 👋
&lt;/h2&gt;

&lt;p&gt;Ever looked at fancy websites with colorful charts and thought, "How do they do that?"&lt;br&gt;
Well, today you're going to learn how to make your very own bar chart using a cool and beginner-friendly library called Chart.js!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is Chart.js?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Chart.js is a simple JavaScript library that helps you create awesome and interactive charts (like bar charts, line charts, pie charts, and more!) using just a little bit of code.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;It's super handy for:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Showing data in a visual way 📊&lt;/li&gt;
&lt;li&gt;Making dashboards and reports prettier 🌈&lt;/li&gt;
&lt;li&gt;Learning how JavaScript and data visualization work together 🤓&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Step-by-Step: Let’s Build a Bar Chart&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;_1️⃣ Include Chart.js in Your HTML&lt;/p&gt;

&lt;p&gt;You can add Chart.js to your project using a CDN (Content Delivery Network) — no need to download anything!_&lt;/p&gt;

&lt;p&gt;Just add this line inside the &lt;/p&gt; of your HTML:&lt;br&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;head&amp;gt;
  &amp;lt;script src="https://cdn.jsdelivr.net/npm/chart.js"&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;/head&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;p&gt;_2️⃣ Add a  Element for the Chart&lt;br&gt;
This is like a blank canvas where your chart will be painted! _&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;body&amp;gt;
  &amp;lt;h2&amp;gt;My First Bar Chart&amp;lt;/h2&amp;gt;
  &amp;lt;canvas id="myChart" width="400" height="200"&amp;gt;&amp;lt;/canvas&amp;gt;
&amp;lt;/body&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;em&gt;3️⃣ Style It Using Basic CSS&lt;br&gt;
Let’s add some simple styles to center the chart and make it look nice:&lt;/em&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;style&amp;gt;
  body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f9f9f9;
    padding: 20px;
  }

  canvas {
    background: #ffffff;
    border: 1px solid #ddd;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
&amp;lt;/style&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;em&gt;4️⃣ Add JavaScript to Create a Basic Bar Chart&lt;br&gt;
Now comes the fun part — using JavaScript to make the chart appear!&lt;/em&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;script&amp;gt;
  const ctx = document.getElementById('myChart').getContext('2d');

  const myChart = new Chart(ctx, {
    type: 'bar', // Type of chart
    data: {
      labels: ['Red', 'Blue', 'Yellow', 'Green', 'Purple', 'Orange'], // X-axis labels
      datasets: [{
        label: 'Votes',
        data: [12, 19, 3, 5, 2, 3], // Y-axis values
        backgroundColor: [
          'rgba(255, 99, 132, 0.6)',
          'rgba(54, 162, 235, 0.6)',
          'rgba(255, 206, 86, 0.6)',
          'rgba(75, 192, 192, 0.6)',
          'rgba(153, 102, 255, 0.6)',
          'rgba(255, 159, 64, 0.6)'
        ],
        borderColor: 'rgba(0, 0, 0, 0.1)',
        borderWidth: 1
      }]
    },
    options: {
      scales: {
        y: {
          beginAtZero: true // Start Y-axis from 0
        }
      }
    }
  });
&amp;lt;/script&amp;gt;

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

&lt;/div&gt;



&lt;p&gt;_Tips for Beginners:&lt;br&gt;
_&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Don’t be afraid to experiment! Try changing the colors or the data values.&lt;/li&gt;
&lt;li&gt;If something breaks, check your browser console (right-click &amp;gt; Inspect &amp;gt; Console tab).&lt;/li&gt;
&lt;li&gt;Want to try other charts? Just change type: 'bar' to 'line', 'pie', or 'doughnut'!&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>webdev</category>
      <category>javascript</category>
      <category>opensource</category>
      <category>learning</category>
    </item>
    <item>
      <title>MULTITHREADING IN JAVA</title>
      <dc:creator>gauharnawab</dc:creator>
      <pubDate>Mon, 06 May 2024 04:11:14 +0000</pubDate>
      <link>https://dev.to/gauharnawab/multithreading-in-java-4mlh</link>
      <guid>https://dev.to/gauharnawab/multithreading-in-java-4mlh</guid>
      <description>&lt;h2&gt;
  
  
  Multithreading in Java for Beginners
&lt;/h2&gt;

&lt;p&gt;In Java multithreading is a process of executing multiple threads simultaneously.&lt;/p&gt;

&lt;p&gt;Before we understand what is Thread in Java we must know about process, kernel, and context switching.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Process: &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A process is a sequence of execution of a program or we can say that it is an abstraction of hardware and kernel.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Kernel:
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A kernel is an interface or fundamental component of the operating system that acts between software applications and the computer hardware.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Context Switching:
In an operating system, context switching is the process between user mode to kernel mode to execute the system call.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What is Thread in Java?
&lt;/h2&gt;

&lt;p&gt;we know already that thread is a lightweight process, but it is a sub-task of a process that shares the same address space as that process.&lt;/p&gt;

&lt;h2&gt;
  
  
  In Java we can achieve Multithreading in 3 ways:
&lt;/h2&gt;

&lt;p&gt;Thread Class:&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%2F8wmmsks77rmbiffgf6mo.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%2F8wmmsks77rmbiffgf6mo.png" alt="Code using Thread Class" width="762" height="168"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Runnable Interface:&lt;/p&gt;

&lt;p&gt;-&amp;gt; In Java runnable interface is used to define the task that can &lt;br&gt;
   be run as a thread. It has only one method void run() that can &lt;br&gt;
   be called when the thread is started.&lt;br&gt;
-&amp;gt; It is a functional interface.&lt;/p&gt;

&lt;p&gt;-&amp;gt; Functional Interface:&lt;br&gt;
   A functional Interface in Java is an interface that contains &lt;br&gt;
   only one abstract method.&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%2Fuspjyz0pv4g477do614a.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%2Fuspjyz0pv4g477do614a.png" alt="Using Runnable Interface" width="633" height="341"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Lambda Expression:&lt;br&gt;
A lambda expression is a short block of code that takes in parameters and returns a value. Lambda expressions are similar to methods, but they do not need a name and they can be implemented&lt;br&gt;
right in the body of a method&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%2Fjr32c4i956zwh6yrumku.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%2Fjr32c4i956zwh6yrumku.png" alt="Using Lambda Expression" width="610" height="197"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>java</category>
      <category>programming</category>
      <category>beginners</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>Priority Queue</title>
      <dc:creator>gauharnawab</dc:creator>
      <pubDate>Tue, 23 Apr 2024 05:47:19 +0000</pubDate>
      <link>https://dev.to/gauharnawab/priority-queue-3pmb</link>
      <guid>https://dev.to/gauharnawab/priority-queue-3pmb</guid>
      <description>&lt;h1&gt;
  
  
  Priority Queue
&lt;/h1&gt;

&lt;p&gt;Priority Queue provides the functionality of Heap Data Structure.&lt;/p&gt;

&lt;p&gt;→ Before we understand priority queue we must know what is Heap Data Structure:-&lt;/p&gt;

&lt;h2&gt;
  
  
  HEAP DATA STRUCTURE
&lt;/h2&gt;

&lt;p&gt;→ Heap is a special type of data structure where the root node and &lt;br&gt;
  parent node is compared with  its left and right children and &lt;br&gt;
  arranged according to the children.&lt;/p&gt;
&lt;h3&gt;
  
  
  TYPES OF HEAPS
&lt;/h3&gt;

&lt;p&gt;-&amp;gt; There are two main types of Heaps:-&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Min Heap&lt;/p&gt;

&lt;p&gt;→ In a min-heap, the parent nodes are smaller than or equal to &lt;br&gt;
  their children. So, the smallest element (5) is at the root, &lt;br&gt;
  and each parent node is smaller than its children.&lt;/p&gt;

&lt;p&gt;→ Example using diagram:-&lt;br&gt;
&lt;/p&gt;

&lt;pre class="highlight plaintext"&gt;&lt;code&gt;        5
      /   \\
     9     11
   /  \\   /  \\
 14   18  19  21
/  \\
33  17
&lt;/code&gt;&lt;/pre&gt;




&lt;/li&gt;

&lt;li&gt;

&lt;p&gt;Max Heap&lt;/p&gt;

&lt;p&gt;-&amp;gt; In max-heap, the parent nodes are larger than or equal to &lt;br&gt;
  their children, So, the largest element (21) is at the root, &lt;br&gt;
  and each parent node is larger than its children.&lt;/p&gt;

&lt;p&gt;-&amp;gt; Example using a diagram:-&lt;br&gt;
&lt;/p&gt;

&lt;pre class="highlight plaintext"&gt;&lt;code&gt;        21
      /    \\
    19      18
   /  \\    /  \\
 17   11  14   5
/  \\
9   3
&lt;/code&gt;&lt;/pre&gt;




&lt;/li&gt;

&lt;/ul&gt;

&lt;h2&gt;
  
  
  APPLICATION OF HEAP DATA STRUCTURE
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Priority Queue&lt;/li&gt;
&lt;li&gt;Graph Algorithms&lt;/li&gt;
&lt;li&gt;Operating System&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  QUEUE
&lt;/h2&gt;

&lt;p&gt;when we talk about queues, we often think of a "first-in, first-out" (FIFO) structure, where elements are processed in the order they were added. But what if we need to process elements based on their priority rather than their arrival time? That's where Priority Queues come into play.&lt;/p&gt;

&lt;h3&gt;
  
  
  Queue Interface Declaration
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;public&lt;/strong&gt; &lt;strong&gt;interface&lt;/strong&gt; Queue &lt;strong&gt;extends&lt;/strong&gt; Collection&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;PRIORITY QUEUE&lt;/p&gt;

&lt;p&gt;→ A Priority Queue is an abstract data type that stores a &lt;br&gt;
  collection of elements along with their associated &lt;br&gt;
  priorities. Unlike normal Queues, Priority Queue elements &lt;br&gt;
  are retrieved in ascending order.&lt;/p&gt;

&lt;p&gt;→ Suppose, we want to retrieve the elements in the ascending &lt;br&gt;
  order. In this case, the head of the priority queue will be &lt;br&gt;
  the smallest element. Once the element is retrieved, the &lt;br&gt;
  next smallest element is the head of the queue.&lt;/p&gt;

&lt;p&gt;→ For Example using code:-&lt;br&gt;
&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;    import java.util.*;
    public class PriorityQueueDemo{
            public static void main(String[] args){
            PriorityQueue&amp;lt;Integer&amp;gt; pq = new PriorityQueue&amp;lt;&amp;gt;();
            pq.add(4);
            pq.add(3);
            pq.add(2);
            pq.add(1);
            pq.add(5);
            pq.add(9);

    System.out.println("The Element of the Priority Queue is : " + pq);
    //System.out.println("head of the  Queue is : " + pq.peek());
    //System.out.println("Priority Queue Content is : " + pq);
    //System.out.println("head removed : " + pq.poll());
    //System.out.println("Priority Queue content is : " + pq);
    ```



            }
    }

    OUTPUT:-The Element of the Priority Queue is : [1, 2, 3, 4, 5, 9]

    Internally, it follows a min heap and can be visualized as a tree.

    →



    ```
            1
          /   \\
         2     3
       /  \\   /
      4    5  9

    min-heap
    ```




### Methods of Java Queue Interface

| Method | Description |
| --- | --- |
| boolean add(object) | It is used to insert the specified element into this queue and return true upon success. |
| boolean offer(object) | It is used to insert the specified element into this queue. |
| Object remove() | It is used to retrieve and remove the head of this queue. |
| Object poll() | It is used to retrieve and remove the head of this queue or returns null if this queue is empty. |
| Object element() | It is used to retrieve, but does not remove, the head of this queue. |
| Object peek() | It is used to retrieve, but does not remove, the head of this queue, or return null if this queue is empty. |
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>programming</category>
      <category>java</category>
      <category>queue</category>
      <category>codenewbie</category>
    </item>
    <item>
      <title>Earth Day CSS ART</title>
      <dc:creator>gauharnawab</dc:creator>
      <pubDate>Sun, 21 Apr 2024 16:53:01 +0000</pubDate>
      <link>https://dev.to/gauharnawab/earth-day-css-art-14h4</link>
      <guid>https://dev.to/gauharnawab/earth-day-css-art-14h4</guid>
      <description>&lt;p&gt;&lt;em&gt;This is a submission for &lt;a href="https://dev.to/devteam/join-us-for-the-next-frontend-challenge-earth-day-edition-52e4"&gt;Frontend Challenge v24.04.17&lt;/a&gt;, CSS Art: Earth Day.&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Inspiration
&lt;/h2&gt;

&lt;p&gt;I chose to create CSS Art inspired by Earth Day. The goal was to convey the beauty and importance of our planet and encourage environmental awareness through creative design.&lt;/p&gt;

&lt;h2&gt;
  
  
  Demo
&lt;/h2&gt;

&lt;p&gt;Unfortunately, I cannot directly embed an editor into this post. However, you can view the live demo on Netlify.&lt;br&gt;
&lt;a href="https://earth-day-celebration.netlify.app/" rel="noopener noreferrer"&gt;Project Demo&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Journey
&lt;/h2&gt;

&lt;p&gt;Creating this CSS Art for Earth Day was an exciting and challenging experience. I started by sketching out ideas and concepts that represent Earth Day, including elements like the Earth, trees, and recycling symbols.&lt;/p&gt;

&lt;p&gt;Throughout the process, I experimented with various CSS techniques to bring these concepts to life. I utilized CSS gradients, shapes, animations, and transitions to create a visually appealing and interactive design.&lt;/p&gt;

&lt;p&gt;One aspect I'm particularly proud of is the animation of the Earth spinning, symbolizing the continuous cycle of life on our planet. It was challenging to achieve the smooth rotation effect using CSS animations, but the end result was worth the effort.&lt;/p&gt;

&lt;h2&gt;
  
  
  LICENSE
&lt;/h2&gt;

&lt;p&gt;MIT License&lt;/p&gt;

</description>
      <category>frontendchallenge</category>
      <category>devchallenge</category>
      <category>css</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Deliciously Designed CSS Artistry at Its Finest</title>
      <dc:creator>gauharnawab</dc:creator>
      <pubDate>Thu, 21 Mar 2024 05:35:02 +0000</pubDate>
      <link>https://dev.to/gauharnawab/deliciously-designed-css-artistry-at-its-finest-56ed</link>
      <guid>https://dev.to/gauharnawab/deliciously-designed-css-artistry-at-its-finest-56ed</guid>
      <description>&lt;p&gt;&lt;em&gt;This is a submission for DEV Challenge v24.03.20, Glam Up My Markup: Camp Activities&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Built
&lt;/h2&gt;

&lt;p&gt;Crafting a Delectable CSS Pizza: A Tasty Visual Treat 🍕&lt;/p&gt;

&lt;p&gt;Crafted a delicious CSS pizza with lifelike toppings like pepperoni and paneer. Demonstrates CSS artistry and creativity, showcasing the versatility of CSS in visual content creation.``&lt;/p&gt;

&lt;h2&gt;
  
  
  Demo Link
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://928e83bc-4f08-499a-9a85-038e018d967c-00-1eeszajlfe55c.worf.replit.dev/" rel="noopener noreferrer"&gt;Project Link&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Project Image
&lt;/h2&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%2Fdjgyu1f0s6ka0ybumck0.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%2Fdjgyu1f0s6ka0ybumck0.png" alt="Image description" width="800" height="303"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Journey
&lt;/h2&gt;

&lt;p&gt;I had fun making tasty CSS pizza art, and learning design tricks along the way. Proud of my lifelike pizza  Next, I'm excited to learn ReactJS deployment.&lt;/p&gt;

</description>
      <category>frontendchallenge</category>
      <category>devchallenge</category>
      <category>css</category>
      <category>javascript</category>
    </item>
    <item>
      <title>Dropdown Menu</title>
      <dc:creator>gauharnawab</dc:creator>
      <pubDate>Sat, 09 Mar 2024 05:01:33 +0000</pubDate>
      <link>https://dev.to/gauharnawab/dropdown-menu-593l</link>
      <guid>https://dev.to/gauharnawab/dropdown-menu-593l</guid>
      <description>&lt;p&gt;&lt;a href="https://replit.com/@gauharnawab/menu#index.html" rel="noopener noreferrer"&gt;Replit&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Hey everyone! I just created a cool dropdown menu using HTML, Bootstrap, and some custom CSS, and I wanted to share it with you.
&lt;/h2&gt;

&lt;p&gt;Description:&lt;br&gt;
I have designed a responsive drop-down menu that is perfect for website navigation. It is sleek, user-friendly, and adaptable to any device.&lt;/p&gt;

&lt;p&gt;Technology Used:&lt;br&gt;
I utilized HTML for the structure, Bootstrap for the base styling and responsiveness, and added some custom CSS to tweak the design to my liking.&lt;/p&gt;

&lt;p&gt;I am providing you with a &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%2Fs1dlah4oe02ieyo28db1.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%2Fs1dlah4oe02ieyo28db1.png" alt="Image description" width="800" height="374"&gt;&lt;/a&gt;link to the above on the header check and comment.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>beginners</category>
      <category>programming</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
