<?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: Gaurav Singh</title>
    <description>The latest articles on DEV Community by Gaurav Singh (@gaurav_webdev93).</description>
    <link>https://dev.to/gaurav_webdev93</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%2F1078903%2Fcd4d0b6e-d3fe-457d-b41f-cab75fd3c630.JPG</url>
      <title>DEV Community: Gaurav Singh</title>
      <link>https://dev.to/gaurav_webdev93</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/gaurav_webdev93"/>
    <language>en</language>
    <item>
      <title>How to distinguish which HTML tag has to close tag or Not?</title>
      <dc:creator>Gaurav Singh</dc:creator>
      <pubDate>Mon, 08 Jan 2024 06:56:47 +0000</pubDate>
      <link>https://dev.to/gaurav_webdev93/how-to-distinguish-which-html-tag-has-to-close-tag-or-not-54lg</link>
      <guid>https://dev.to/gaurav_webdev93/how-to-distinguish-which-html-tag-has-to-close-tag-or-not-54lg</guid>
      <description>&lt;p&gt;If any HTML element doesn't have any content inside them then it will not have a closing tag.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--ZaIA5AaJ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/tsbprhr0hd5nd34dw4wf.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ZaIA5AaJ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/tsbprhr0hd5nd34dw4wf.png" alt="Image description" width="800" height="382"&gt;&lt;/a&gt;&lt;br&gt;
For Example image tag will not contain any content inside it that's why it doesn't have a closing tag.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--dEOcZR5n--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/fs9hp0czuhgaotcjfvyg.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--dEOcZR5n--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/fs9hp0czuhgaotcjfvyg.png" alt="Image description" width="800" height="382"&gt;&lt;/a&gt;&lt;br&gt;
The paragraph tag will have content that's why it has a closing tag.&lt;/p&gt;

&lt;p&gt;I am a Web Developer &amp;amp; enjoy working on challenging projects, which is what makes this job so rewarding. You can reach out to my &lt;a href="https://gauravweb.dev/"&gt;My Portfolio Site&lt;/a&gt;. I hope this article will helpful&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Why unordered list is used to create navigation on the website not an ordered list?</title>
      <dc:creator>Gaurav Singh</dc:creator>
      <pubDate>Mon, 23 Oct 2023 09:00:32 +0000</pubDate>
      <link>https://dev.to/gaurav_webdev93/why-unordered-list-is-used-to-create-navigation-on-the-website-not-an-ordered-list-2nad</link>
      <guid>https://dev.to/gaurav_webdev93/why-unordered-list-is-used-to-create-navigation-on-the-website-not-an-ordered-list-2nad</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;We don't need to follow any order while creating the navigation that's why we use an unordered list instead of an ordered list while creating links in Navigation.&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Ordered List (&lt;code&gt;&amp;lt;ol&amp;gt;&lt;/code&gt;)
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;An ordered list is used when you want to display a list of items in a specific numerical or alphabetical order.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;It is created using the &lt;code&gt;&amp;lt;ol&amp;gt;&lt;/code&gt; (ordered list) element and contains list items as &lt;code&gt;&amp;lt;li&amp;gt;&lt;/code&gt; (list item) elements.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;By default, ordered lists use numbers (1, 2, 3, etc.) to indicate the order, but you can customize the numbering style using CSS.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Unordered List (&lt;code&gt;&amp;lt;ul&amp;gt;&lt;/code&gt;)
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;An unordered list is used when you want to display a list of items without any specific order or hierarchy. It is often used for creating bulleted lists.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;It is created using the &lt;code&gt;&amp;lt;ul&amp;gt;&lt;/code&gt; (unordered list) element and contains list items as &lt;code&gt;&amp;lt;li&amp;gt;&lt;/code&gt; elements.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;By default, unordered lists use bullet points (•) to indicate list items, but you can customize the bullet style using CSS.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;The choice between ordered and unordered lists should be based on the content and the desired presentation of that content on your web page.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I am a Web Developer &amp;amp; enjoy working on challenging projects, which is what makes this job so rewarding. You can reach out to my &lt;a href="https://gauravweb.dev/"&gt;My Portfolio Site&lt;/a&gt;. I hope this article will helpful&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>html</category>
      <category>website</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Basics Terminal Command Every Web Developer Should Know.</title>
      <dc:creator>Gaurav Singh</dc:creator>
      <pubDate>Thu, 28 Sep 2023 13:52:59 +0000</pubDate>
      <link>https://dev.to/gaurav_webdev93/basics-terminal-command-every-web-developer-should-know-372e</link>
      <guid>https://dev.to/gaurav_webdev93/basics-terminal-command-every-web-developer-should-know-372e</guid>
      <description>&lt;ul&gt;
&lt;li&gt;Home Directory &lt;code&gt;~&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media.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%2Fnjgyhx1l9b9tlyr7bi58.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.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%2Fnjgyhx1l9b9tlyr7bi58.png" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;See all files in the current Directory &lt;code&gt;ls&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media.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%2Feoy7exej4b361tn2utww.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.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%2Feoy7exej4b361tn2utww.png" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;See in which Directory you are currently now &lt;code&gt;pwd&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media.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%2Fz80pl5yyuwtrvd0ny5x7.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.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%2Fz80pl5yyuwtrvd0ny5x7.png" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Clear Console &lt;code&gt;clear&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media.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%2Fbdbmgxsc5v1jis16pecb.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.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%2Fbdbmgxsc5v1jis16pecb.png" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Navigation Commands
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Change Directory &lt;code&gt;cd&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media.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%2Fx517il8s37b1c9ewpmwn.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.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%2Fx517il8s37b1c9ewpmwn.png" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Traverse back to Directory &lt;code&gt;cd ..&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media.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%2Fi4tv6ixvrdhehrsd6qr7.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.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%2Fi4tv6ixvrdhehrsd6qr7.png" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Root Vs Home Directory
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Root Directory &lt;code&gt;/&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media.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%2Fgn6vcik3555uw16vqgql.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.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%2Fgn6vcik3555uw16vqgql.png" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Home Directory &lt;code&gt;~&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media.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%2Fkemaxsfq6qjrxejjakof.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.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%2Fkemaxsfq6qjrxejjakof.png" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Absolute vs Relative Path
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Absolute&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media.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%2Fllvdq1wx3atczd90huzw.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.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%2Fllvdq1wx3atczd90huzw.png" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Relative Path&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media.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%2F4p67absbvxke1duebvud.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.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%2F4p67absbvxke1duebvud.png" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Create a new Directory
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;code&gt;mkdir dir&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media.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%2Fv5rlnw7vq12br595bbkh.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.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%2Fv5rlnw7vq12br595bbkh.png" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Flags
&lt;/h2&gt;

&lt;p&gt;Flags are the additional command embedded with the commands to show more in the directory (Hidden folders/files)&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;code&gt;ls -l&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media.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%2F7v6l5hjxbi4lhcuk42c5.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.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%2F7v6l5hjxbi4lhcuk42c5.png" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;code&gt;ls -a&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media.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%2Fljhta3wkup4tn1qmmx7p.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.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%2Fljhta3wkup4tn1qmmx7p.png" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Create a New file
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;code&gt;touch filename&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media.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%2Fwacb7xhrzkbqdl5e4wcn.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.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%2Fwacb7xhrzkbqdl5e4wcn.png" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Delete Files/Folders
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Delete files &lt;code&gt;rm - filename&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media.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%2Fxf3z5g0arg7jz1o81rjf.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.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%2Fxf3z5g0arg7jz1o81rjf.png" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Delete Folders
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Empty Folder&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media.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%2F5q4fj8oj5b138aifxzqu.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.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%2F5q4fj8oj5b138aifxzqu.png" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Folder with files &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media.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%2F0rfujunugdlgy3ukbgwe.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.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%2F0rfujunugdlgy3ukbgwe.png" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I am a Web Developer &amp;amp; enjoy working on challenging projects, which is what makes this job so rewarding. You can reach out to my &lt;a href="https://gauravweb.dev/" rel="noopener noreferrer"&gt;My Portfolio Site&lt;/a&gt;. I hope this article will helpful&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>terminal</category>
      <category>freelance</category>
      <category>programming</category>
    </item>
    <item>
      <title>How to style text in console in the browser?</title>
      <dc:creator>Gaurav Singh</dc:creator>
      <pubDate>Mon, 08 May 2023 11:05:35 +0000</pubDate>
      <link>https://dev.to/gaurav_webdev93/how-to-style-text-in-console-in-the-browser-42j7</link>
      <guid>https://dev.to/gaurav_webdev93/how-to-style-text-in-console-in-the-browser-42j7</guid>
      <description>&lt;p&gt;If you find it difficult to style the output, we can do it in the JavaScript console.&lt;/p&gt;

&lt;p&gt;The steps are as follows:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Click on Inspect Element in the browser's Developer Tools, and then scroll down to see your new string!&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Print this code in the JavaScript console:&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;console.log("%cHello world","font:size:40px; color:blue ");

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

&lt;/div&gt;



&lt;p&gt;Change the text to whatever you want and then hit enter&lt;/p&gt;

&lt;p&gt;Now you can see the changes in the console tab&lt;/p&gt;

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

&lt;p&gt;Have fun and enjoy coding!😊&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
