<?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: Khoi</title>
    <description>The latest articles on DEV Community by Khoi (@khoi).</description>
    <link>https://dev.to/khoi</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%2F1086412%2F65229257-e218-499c-9e8e-2b15163ec59e.jpg</url>
      <title>DEV Community: Khoi</title>
      <link>https://dev.to/khoi</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/khoi"/>
    <language>en</language>
    <item>
      <title>Functions in JavaScript for Beginners</title>
      <dc:creator>Khoi</dc:creator>
      <pubDate>Sun, 09 Jul 2023 14:12:55 +0000</pubDate>
      <link>https://dev.to/khoi/functions-in-javascript-for-beginners-47j6</link>
      <guid>https://dev.to/khoi/functions-in-javascript-for-beginners-47j6</guid>
      <description>&lt;h3&gt;
  
  
  Functions are one of the most important concepts in JavaScript. They allow you to group together related code, making your code more reusable and easier to understand.
&lt;/h3&gt;

&lt;p&gt;In this blog post, we will learn about the basics of functions in JavaScript. We will cover:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;What is a function?&lt;/li&gt;
&lt;li&gt;How to define a function&lt;/li&gt;
&lt;li&gt;How to pass arguments to a function&lt;/li&gt;
&lt;li&gt;How to return values from a function&lt;/li&gt;
&lt;li&gt;Function declarations vs. function expressions&lt;/li&gt;
&lt;li&gt;Immediately invoked function expressions (IIFEs)&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  What is a function?
&lt;/h3&gt;

&lt;p&gt;A function is a block of code that is executed when it is called. Functions can be used to perform a variety of tasks, such as:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Calculating a mathematical expression&lt;/li&gt;
&lt;li&gt;Validating user input&lt;/li&gt;
&lt;li&gt;Formatting text&lt;/li&gt;
&lt;li&gt;Making HTTP requests&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  How to define a function
&lt;/h3&gt;

&lt;p&gt;To define a function in JavaScript, you use the &lt;code&gt;function&lt;/code&gt; keyword. The syntax for defining a function is as follows:&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--TxVHDc7R--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/p3z0ndtpez58wialv2hd.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--TxVHDc7R--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/p3z0ndtpez58wialv2hd.png" alt="Image description" width="334" height="101"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;functionName&lt;/code&gt; is the name of the function.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;parameters&lt;/code&gt; are the arguments that the function takes.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;Body of the function&lt;/code&gt; is the code that is executed when the function is called.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;return value&lt;/code&gt; is the value that the function returns.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  How to pass arguments to a function
&lt;/h3&gt;

&lt;p&gt;When you call a function, you can pass it arguments. Arguments are the values that are passed to the function when it is called. The arguments are used by the function to perform its task.&lt;/p&gt;

&lt;p&gt;To pass arguments to a function, you list them after the function name, separated by commas. For example:&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--p96PFxbc--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/vg175rm1qm4r56gzrhh4.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--p96PFxbc--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/vg175rm1qm4r56gzrhh4.png" alt="Image description" width="355" height="139"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  How to return values from a function
&lt;/h3&gt;

&lt;p&gt;A function can return a value. The value that is returned is the result of the function's execution.&lt;/p&gt;

&lt;p&gt;To return a value from a function, you use the &lt;code&gt;return&lt;/code&gt; keyword. For example:&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--AeAWbTRb--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/a79d518klbn46uz9nhmp.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--AeAWbTRb--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/a79d518klbn46uz9nhmp.png" alt="Image description" width="354" height="141"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Function declarations vs. function expressions
&lt;/h3&gt;

&lt;p&gt;There are two ways to define a function in JavaScript: function declarations and function expressions.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Function declarations are defined using the function keyword. They are executed when the script is loaded.&lt;/li&gt;
&lt;li&gt;Function expressions are defined using the function keyword, but they are not executed until they are called.
The following code shows an example of a function declaration:
&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--yJZ1Hzr---/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/np6pzbfmra91vxe3t68x.png" alt="Image description" width="348" height="84"&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The following code shows an example of a function expression:&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--G9lLjT3u--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/rvywnkwtd580m1mfhhiy.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--G9lLjT3u--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/rvywnkwtd580m1mfhhiy.png" alt="Image description" width="405" height="85"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Immediately invoked function expressions (IIFEs)
&lt;/h3&gt;

&lt;p&gt;An Immediately Invoked Function Expression (IIFE) is a function expression that is immediately executed when it is defined. IIFEs are often used to encapsulate code that needs to be executed only once, such as code that initializes a global variable.&lt;/p&gt;

&lt;p&gt;The following code shows an example of an IIFE:&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--PFk8Yqi9--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/vsukunupq3suboe689le.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--PFk8Yqi9--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/vsukunupq3suboe689le.png" alt="Image description" width="271" height="158"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Conclusion
&lt;/h3&gt;

&lt;p&gt;Functions are a powerful tool that can be used to make your JavaScript code more reusable and easier to understand. In this blog post, we have learned the basics of functions in JavaScript. We have covered function declarations, function expressions, and IIFEs.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Learning about DEV Tools</title>
      <dc:creator>Khoi</dc:creator>
      <pubDate>Tue, 27 Jun 2023 01:34:33 +0000</pubDate>
      <link>https://dev.to/khoi/learning-about-dev-tools-46io</link>
      <guid>https://dev.to/khoi/learning-about-dev-tools-46io</guid>
      <description>&lt;h1&gt;
  
  
  What is DEV Tools:
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;DEV Tools (developer tools) are tools built into the browser that help programmers easily access the internals of their web browser and application.
# Ways to open DEV Tools:&lt;/li&gt;
&lt;li&gt;There are three ways to open the Chrome Developer Tools menu:&lt;/li&gt;
&lt;/ul&gt;

&lt;ol&gt;
&lt;li&gt;From the &lt;code&gt;Chrome Menu&lt;/code&gt; &amp;gt; &lt;code&gt;More Tools&lt;/code&gt; &amp;gt;&lt;code&gt;Developer Tools&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Right-click anywhere on a webpage and select &lt;code&gt;Inspect&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Use the keyboard shortcut &lt;code&gt;F12&lt;/code&gt; or &lt;code&gt;CTRL&lt;/code&gt; + &lt;code&gt;Shift&lt;/code&gt; +&lt;code&gt;C&lt;/code&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;h1&gt;
  
  
  When open DEV Tools it'll look like this:
&lt;/h1&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--U_48vwpa--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ci64xdt0zcdrjh5wwbof.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--U_48vwpa--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ci64xdt0zcdrjh5wwbof.png" alt="Image description" width="800" height="423"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The DEV Tools will be on your right; this is where you can edit your web without using VS Code.&lt;/li&gt;
&lt;/ul&gt;

</description>
    </item>
    <item>
      <title>Learning about string in JS</title>
      <dc:creator>Khoi</dc:creator>
      <pubDate>Fri, 16 Jun 2023 08:18:01 +0000</pubDate>
      <link>https://dev.to/khoi/learning-about-string-in-js-4c73</link>
      <guid>https://dev.to/khoi/learning-about-string-in-js-4c73</guid>
      <description>&lt;h1&gt;
  
  
  What does string in JavaScript mean?
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;A &lt;code&gt;string&lt;/code&gt; is a sequence of one or more characters that may consist of letters, numbers, or symbols&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  Example:
&lt;/h1&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;let text = "Hello:)))";
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;In the above code, &lt;code&gt;myString&lt;/code&gt; is a variable that holds the value of the string &lt;code&gt;"Hello, World!"&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;And to show the code to the screen, you will have to code like this:
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; &amp;lt;p id="demo"&amp;gt;&amp;lt;/p&amp;gt;
    &amp;lt;script&amp;gt;
    let text = "Hello:)))";
    document.getElementById("demo").innerHTML = text;
    &amp;lt;/script&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;your result will be like this: 
&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--XcY8Kxnc--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/u37938s10mpqvynh20su.png" alt="Image description" width="800" height="213"&gt;
&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>javascript</category>
      <category>beginners</category>
      <category>string</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Let's learn about Flexbox</title>
      <dc:creator>Khoi</dc:creator>
      <pubDate>Sun, 28 May 2023 14:23:31 +0000</pubDate>
      <link>https://dev.to/khoi/lets-learn-about-flexbox-1a6p</link>
      <guid>https://dev.to/khoi/lets-learn-about-flexbox-1a6p</guid>
      <description>&lt;h1&gt;
  
  
  What is flexbox?
&lt;/h1&gt;

&lt;p&gt;Flexbox is a relatively new way of manipulating elements in CSS, and its debut was revolutionary.&lt;/p&gt;

&lt;h1&gt;
  
  
  How to create a box and using flexbox:
&lt;/h1&gt;

&lt;p&gt;You can look at the code below&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--frmjn5QP--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/quq9numbr0a0hyg69ldp.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--frmjn5QP--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/quq9numbr0a0hyg69ldp.png" alt="Image description" width="265" height="331"&gt;&lt;/a&gt;&lt;br&gt;
Then it will display on your screen like this (There are some note for you to know what we code will look like):&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--1Z7KG2eY--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/c7fdloksznkg6rowe8jp.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--1Z7KG2eY--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/c7fdloksznkg6rowe8jp.png" alt="Image description" width="657" height="233"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  I found this man on DEV Community show us a picture of some examples about how flexbox work:
&lt;/h1&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s---wGRipkj--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/cvi3x7vy5k3ftiy155lu.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s---wGRipkj--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/cvi3x7vy5k3ftiy155lu.png" alt="Image description" width="800" height="1075"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Source: &lt;a href="https://dev.to/arafat4693/flexbox-justify-content-visual-representation-4c22"&gt;https://dev.to/arafat4693/flexbox-justify-content-visual-representation-4c22&lt;/a&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>css</category>
      <category>flexbox</category>
    </item>
    <item>
      <title>I'm trying to find out how to create games on website by myself.</title>
      <dc:creator>Khoi</dc:creator>
      <pubDate>Tue, 23 May 2023 03:14:08 +0000</pubDate>
      <link>https://dev.to/khoi/im-trying-to-find-out-how-to-create-games-on-website-by-myself-4i3m</link>
      <guid>https://dev.to/khoi/im-trying-to-find-out-how-to-create-games-on-website-by-myself-4i3m</guid>
      <description>&lt;h1&gt;
  
  
  What kind of game i want to make?
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;The game that i would like to make is this game called Helix Jump
&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--KTChCNtk--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/dgr62czz5tjn0reh1831.png" alt="Image description" width="680" height="501"&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  Where i will learn it?
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;I will go on YouTube and search. Finally i found couples of videos teaches us how to do so:&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.youtube.com/watch?v=m2e6RPNY0_E"&gt;https://www.youtube.com/watch?v=m2e6RPNY0_E&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.youtube.com/watch?v=tiIaOoMfJ5U"&gt;https://www.youtube.com/watch?v=tiIaOoMfJ5U&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.youtube.com/watch?v=CjzgoZnOY_c"&gt;https://www.youtube.com/watch?v=CjzgoZnOY_c&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
    </item>
    <item>
      <title>Learning JavaScript</title>
      <dc:creator>Khoi</dc:creator>
      <pubDate>Sun, 21 May 2023 14:12:14 +0000</pubDate>
      <link>https://dev.to/khoi/learning-javascript-4a4j</link>
      <guid>https://dev.to/khoi/learning-javascript-4a4j</guid>
      <description>&lt;h1&gt;
  
  
  Part 1:
&lt;/h1&gt;

&lt;h3&gt;
  
  
  Ways to code:
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;The simplest way to get started is to simply create an HTML file with the JavaScript code inside of it.
&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Z5p1_y_Q--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/zfdu2ri4ha38uitlh3fu.png" alt="Image description" width="651" height="294"&gt;
&lt;/li&gt;
&lt;li&gt;The next way is to directly create a JS file.
&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--n2Z22C57--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/n3emxa567dlfh4ksm8hs.png" alt="Image description" width="246" height="52"&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Simpliest command:
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;The simpliest command you will learn is &lt;strong&gt;console.log("write sth you want here")&lt;/strong&gt;. &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;'console.log()&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;is the command to print something to the developer console in your browser. You can use this to print the results from any of the following articles and exercises to the console. We encourage you to code along with all of the examples in this and future lessons.'&lt;/em&gt;&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Tm9rNPt8--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/2h5z5275r3516shp1tcu.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Tm9rNPt8--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/2h5z5275r3516shp1tcu.png" alt="Image description" width="250" height="78"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  How to check if you command is doing right?
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;There's a way you can check it: &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;1.&lt;/strong&gt; Install &lt;strong&gt;Live Server&lt;/strong&gt;.&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--S4STxy-2--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/r9js9rzay94590r3ltlb.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--S4STxy-2--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/r9js9rzay94590r3ltlb.png" alt="Live Server" width="252" height="103"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2.&lt;/strong&gt; Right click on your code, then click &lt;strong&gt;Open with Live Server&lt;/strong&gt;.&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--sM1R0AGj--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/qganimyn75ysjj73gahf.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--sM1R0AGj--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/qganimyn75ysjj73gahf.png" alt="Image description" width="308" height="489"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3.&lt;/strong&gt; When it open your browser press &lt;strong&gt;F12&lt;/strong&gt; and you will see a small window like this:&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--XlcPP--p--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/593644rm9qzcw0evan9o.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--XlcPP--p--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/593644rm9qzcw0evan9o.png" alt="Image description" width="554" height="625"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4.&lt;/strong&gt; Then click the tag next to it, you will see if your command is right or not:&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--GDfbGp_p--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/av5hkgmkuier4yk8hl98.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--GDfbGp_p--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/av5hkgmkuier4yk8hl98.png" alt="Image description" width="550" height="192"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>whathaveilearn</category>
    </item>
  </channel>
</rss>
