<?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: SumantaWeb</title>
    <description>The latest articles on DEV Community by SumantaWeb (@sumanta_thefrontdev).</description>
    <link>https://dev.to/sumanta_thefrontdev</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%2F712279%2F151948b1-8b9a-4561-bcf5-3e713a4d614f.png</url>
      <title>DEV Community: SumantaWeb</title>
      <link>https://dev.to/sumanta_thefrontdev</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sumanta_thefrontdev"/>
    <language>en</language>
    <item>
      <title>Alpine JS : An Intro</title>
      <dc:creator>SumantaWeb</dc:creator>
      <pubDate>Tue, 01 Feb 2022 06:06:32 +0000</pubDate>
      <link>https://dev.to/sumanta_thefrontdev/alpine-js-an-intro-25lm</link>
      <guid>https://dev.to/sumanta_thefrontdev/alpine-js-an-intro-25lm</guid>
      <description>&lt;h1&gt;
  
  
  Alpine JS : An Intro
&lt;/h1&gt;

&lt;h2&gt;
  
  
  Topics
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Overview&lt;/li&gt;
&lt;li&gt;How to Code&lt;/li&gt;
&lt;li&gt;Creating a basic button&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Overview
&lt;/h2&gt;

&lt;p&gt;Your new, lightweight, JavaScript framework. &lt;a href="https://alpinejs.dev/"&gt;-Alpine Js&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It is a light weight js framework inspired by Vue JS!&lt;/p&gt;

&lt;h2&gt;
  
  
  How To Code
&lt;/h2&gt;

&lt;p&gt;For it you have this script tag --&lt;br&gt;
&lt;code&gt;&amp;lt;script src="https://unpkg.com/alpinejs" defer&amp;gt;&amp;lt;/script&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;but in the site it will be showing like this &lt;br&gt;
&lt;code&gt;&amp;lt;script src="//unpkg.com/alpinejs" defer&amp;gt;&amp;lt;/script&amp;gt;&lt;/code&gt;&lt;br&gt;
just add &lt;strong&gt;https:&lt;/strong&gt; before &lt;strong&gt;//unpkg.com&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;so for writing code just add the script tag inside the head tag&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;head&amp;gt;
  &amp;lt;title&amp;gt;Title&amp;lt;/title&amp;gt;
  &amp;lt;script src="https://unpkg.com/alpinejs" defer&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;/head&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Now in the body tag add a attribute like this&lt;br&gt;
&lt;code&gt;&amp;lt;body x-data="data()"&amp;gt;&amp;lt;/body&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Now add another script tag! And write the following inside it!&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 x-data="data()"&amp;gt;
  &amp;lt;script&amp;gt;
  function data(){
    return{

    }
  }
  &amp;lt;/script&amp;gt;
&amp;lt;/body&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Now understand what was data() it would fetch all the data from here.&lt;/p&gt;

&lt;p&gt;So becoz it is an object so add variables like this &lt;code&gt;varName : "value"&lt;/code&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Creating a basic button
&lt;/h2&gt;

&lt;p&gt;So lets create some variables!&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;
  function data(){
    return{
      shown : false,
      click(){

      },
    }
  }
  &amp;lt;/script&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Here there is a var called shown with false as its value, and a function named click() so lets code them all.&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;button&amp;gt;Toggle&amp;lt;/button&amp;gt;
&amp;lt;div&amp;gt;Content&amp;lt;/div&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Add these.&lt;/p&gt;

&lt;p&gt;Give a attribute &lt;code&gt;x-show="shown"&lt;/code&gt; to the div. (x-show means if the value is being shown or not [it is an if statement], it goes away[the button] because the var shown is false if it is true the button will be visible).&lt;/p&gt;

&lt;p&gt;Now give a attribute &lt;code&gt;x-on:click="click()"&lt;/code&gt; to the button (it will run when the button is clicked).&lt;/p&gt;

&lt;p&gt;Coding the function.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;click(){
        this.shown = !this.shown
},
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Now it will toggle the shown var as true and then false!&lt;/p&gt;

&lt;h2&gt;
  
  
  Enjoy!
&lt;/h2&gt;

&lt;p&gt;All the code :-&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;head&amp;gt;
  &amp;lt;title&amp;gt;Title&amp;lt;/title&amp;gt;
  &amp;lt;script src="https://unpkg.com/alpinejs" defer&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body x-data="data()"&amp;gt;
  &amp;lt;button x-on:click="click()"&amp;gt;Toggle&amp;lt;/button&amp;gt;
  &amp;lt;div x-show="shown"&amp;gt;Content&amp;lt;/div&amp;gt;
  &amp;lt;script&amp;gt;
  function data(){
    return{
      shown : false,
      click(){
        this.shown = !this.shown
      },
    }
  }
  &amp;lt;/script&amp;gt;
&amp;lt;/body&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Consider Following??&lt;/p&gt;

&lt;p&gt;&lt;a href="https://dev.to/sumanta_thefrontdev"&gt;Dev.To&lt;/a&gt;&lt;br&gt;
&lt;a href="https://github.com/SumantaGitWeb"&gt;GitHub&lt;/a&gt;&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>beginners</category>
    </item>
    <item>
      <title>ShoPo ~ Js and Places to learn!</title>
      <dc:creator>SumantaWeb</dc:creator>
      <pubDate>Tue, 01 Feb 2022 05:05:21 +0000</pubDate>
      <link>https://dev.to/sumanta_thefrontdev/shopo-js-and-places-to-learn-27p6</link>
      <guid>https://dev.to/sumanta_thefrontdev/shopo-js-and-places-to-learn-27p6</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h1&gt;
  
  
  ShoPo ~ Js and Places to learn!
&lt;/h1&gt;

&lt;h2&gt;
  
  
  Overview
&lt;/h2&gt;

&lt;p&gt;&lt;em&gt;JavaScript, often abbreviated JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. Over 97% of websites use JavaScript on the client side for web page behavior, often incorporating third-party libraries.&lt;/em&gt; &lt;a href="https://en.wikipedia.org/wiki/JavaScript"&gt;Wikipedia&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Javascript is one of the building blocks of the web and is used to add functionalities to your web pages. One of them can be shown just now!&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;button id="btn"&amp;gt;Alert!&amp;lt;/button&amp;gt;

&amp;lt;script&amp;gt;
document.getElementById("myBtn").addEventListener("click", function(){
alert("You clicked a button!")
});
&amp;lt;/script&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Here you can click a button. It would get noticed by js and run a function!&lt;/p&gt;

&lt;h2&gt;
  
  
  Places to learn
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://www.w3schools.com/js/default.asp"&gt;w3schools&lt;/a&gt;&lt;br&gt;
&lt;a href="https://www.codecademy.com/"&gt;Codecademy&lt;/a&gt;&lt;br&gt;
&lt;a href="https://youtu.be/W6NZfCO5SIk"&gt;YouTube - Programming with Mosh&lt;br&gt;
&lt;/a&gt;&lt;br&gt;
&lt;a href="https://youtu.be/PkZNo7MFNFg"&gt;YouTube - freeCodeCamp.org&lt;br&gt;
&lt;/a&gt;&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>beginners</category>
    </item>
    <item>
      <title>ShoPo - How to copy a text to clipboard</title>
      <dc:creator>SumantaWeb</dc:creator>
      <pubDate>Mon, 31 Jan 2022 11:29:54 +0000</pubDate>
      <link>https://dev.to/sumanta_thefrontdev/shopo-how-to-copy-a-text-to-clipboard-2mhf</link>
      <guid>https://dev.to/sumanta_thefrontdev/shopo-how-to-copy-a-text-to-clipboard-2mhf</guid>
      <description>&lt;h1&gt;
  
  
  ShoPo - How to copy a text to clipboard (using JS!)
&lt;/h1&gt;

&lt;h2&gt;
  
  
  ShoPo is a new posting session which is Short! (SHOrt POst).
&lt;/h2&gt;

&lt;p&gt;Yeah! we can copy a text to clipboard at a click of a button!&lt;/p&gt;

&lt;p&gt;so how to do it?&lt;/p&gt;

&lt;p&gt;so do the following --&lt;br&gt;
1)Add a click function to the button&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;using &lt;code&gt;JavaScript&lt;/code&gt; way 1&lt;br&gt;
&lt;/p&gt;


&lt;/blockquote&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;button onclick="function()"&amp;gt;Copy!&amp;lt;/button&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;blockquote&gt;
&lt;p&gt;using &lt;code&gt;JavaScript&lt;/code&gt; way 2&lt;br&gt;
&lt;/p&gt;
&lt;/blockquote&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;button id="copyButton"&amp;gt;Copy!&amp;lt;/button&amp;gt;

&amp;lt;!--- Just add a onClick event in js ---&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;blockquote&gt;
&lt;p&gt;using &lt;code&gt;Alpine&lt;/code&gt;&lt;br&gt;
&lt;/p&gt;
&lt;/blockquote&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;button @click="function()"&amp;gt;Copy!&amp;lt;/button&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;2)Now code the function&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;function(){
  navigator.clipboard.writeText("text goes here!")
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>javascript</category>
    </item>
    <item>
      <title>Challenge #1</title>
      <dc:creator>SumantaWeb</dc:creator>
      <pubDate>Wed, 22 Dec 2021 05:33:03 +0000</pubDate>
      <link>https://dev.to/sumanta_thefrontdev/challenge-1-p9f</link>
      <guid>https://dev.to/sumanta_thefrontdev/challenge-1-p9f</guid>
      <description>&lt;p&gt;Okay,&lt;/p&gt;

&lt;p&gt;IT'SS THE LAST MONTH OF THE YEAR!!!&lt;/p&gt;

&lt;p&gt;So all the business of the whole year comes to an end in few days. But one work left...&lt;/p&gt;

&lt;p&gt;Challenges!&lt;br&gt;
My web dev teacher gave us a challenge to complete.. And I am sure gonna complete it by today.. let's see if I can.&lt;/p&gt;

&lt;p&gt;The challenge :- &lt;/p&gt;

&lt;p&gt;"Build a web page with an input field. If you type a valid css color code in the field, the background of the page should change to that color. If the color code is illegal, it should show an error message."&lt;/p&gt;

&lt;p&gt;Note : DO NOT use input type=color.&lt;/p&gt;

&lt;p&gt;So let's see if I can. You all also try and say in the comments if you could complete it.&lt;/p&gt;

&lt;p&gt;I would send the code in another post someday..&lt;/p&gt;

&lt;p&gt;Till then byee.&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>webdev</category>
      <category>discuss</category>
    </item>
    <item>
      <title>What to start with as a begginer in Web Dev??</title>
      <dc:creator>SumantaWeb</dc:creator>
      <pubDate>Wed, 01 Dec 2021 12:27:04 +0000</pubDate>
      <link>https://dev.to/sumanta_thefrontdev/what-to-start-with-as-a-begginer-in-web-dev-4eg</link>
      <guid>https://dev.to/sumanta_thefrontdev/what-to-start-with-as-a-begginer-in-web-dev-4eg</guid>
      <description>&lt;p&gt;Well all the YouTube videos, some are true some are false.. But the statement I always say ....&lt;/p&gt;

&lt;p&gt;Don't spend money. As it can happen that after spending money, sometimes the money goes waste and you don't learn anything..&lt;br&gt;
So the first thing to do is. Start with HTML5. And see YouTube to start learning...&lt;/p&gt;

&lt;h2&gt;
  
  
  CONCLUSION : Start with HTML5 using YouTube videos.
&lt;/h2&gt;

</description>
      <category>discuss</category>
      <category>webdev</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Should you ever Collab??</title>
      <dc:creator>SumantaWeb</dc:creator>
      <pubDate>Tue, 30 Nov 2021 12:43:25 +0000</pubDate>
      <link>https://dev.to/sumanta_thefrontdev/should-you-ever-collab-1pld</link>
      <guid>https://dev.to/sumanta_thefrontdev/should-you-ever-collab-1pld</guid>
      <description>&lt;p&gt;So here is today's question&lt;/p&gt;

&lt;h1&gt;
  
  
  Should you ever Collab??
&lt;/h1&gt;

&lt;p&gt;We wil cover it in 2 points&lt;/p&gt;

&lt;h2&gt;
  
  
  YES
&lt;/h2&gt;

&lt;p&gt;It gets you know new things, gather knowledge, and makes you happy with people. It's relaxig as sometimes you talk and releax with friends. It evn helps you get a collaborative job!!&lt;/p&gt;

&lt;h2&gt;
  
  
  NO
&lt;/h2&gt;

&lt;p&gt;Well bad collaboration = bad work.&lt;/p&gt;

&lt;h1&gt;
  
  
  SO THE ULTIMATE CONCLUSION IS COLLABORATION IS GOOD!! 😀😀
&lt;/h1&gt;

</description>
      <category>disc</category>
    </item>
    <item>
      <title>Front - End websites for practice</title>
      <dc:creator>SumantaWeb</dc:creator>
      <pubDate>Fri, 08 Oct 2021 09:01:52 +0000</pubDate>
      <link>https://dev.to/sumanta_thefrontdev/front-end-websites-for-practice-14mf</link>
      <guid>https://dev.to/sumanta_thefrontdev/front-end-websites-for-practice-14mf</guid>
      <description>&lt;p&gt;So hi again!!&lt;/p&gt;

&lt;p&gt;I am here with some websites to practice front-end!!&lt;/p&gt;

&lt;p&gt;So no descs or unnecessary talks. Just names&lt;/p&gt;

&lt;p&gt;1) Netflix&lt;br&gt;
2) Amazon&lt;br&gt;
3) Bootstrap&lt;br&gt;
4) Myntra&lt;br&gt;
5) Unacademy&lt;/p&gt;

&lt;p&gt;Some other famous ones can also be done..&lt;/p&gt;

&lt;p&gt;Now the Bye time. Follow, heart, comment, unicorn.. Don't Wait!!&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>css</category>
      <category>javascript</category>
    </item>
    <item>
      <title>What are the best css trends??</title>
      <dc:creator>SumantaWeb</dc:creator>
      <pubDate>Tue, 05 Oct 2021 06:43:12 +0000</pubDate>
      <link>https://dev.to/sumanta_thefrontdev/what-are-the-best-css-trends-2phm</link>
      <guid>https://dev.to/sumanta_thefrontdev/what-are-the-best-css-trends-2phm</guid>
      <description>&lt;p&gt;So hey!!&lt;br&gt;
Here again for you all. So what's today.. &lt;br&gt;
I have come up with 2 css trends so that your website looks cool!!&lt;/p&gt;

&lt;p&gt;1) Glassmorphism&lt;br&gt;
The most popular trend this year. It is a effect which gives you a blurry glass like background. Blurs the background text/image. I also have a post on it. Check it out on my profile.&lt;/p&gt;

&lt;p&gt;2) Neumorphism&lt;br&gt;
It's the popular trend of the past year but still popular. It makes buttons text look like pop - out of the screen . &lt;/p&gt;

&lt;p&gt;No it's the Bye time.. Follow me , heart the pos and if you like it then unicorn it!! Try both the css trends and thank me afterwards. Till then. BYEEEEEE.&lt;/p&gt;

</description>
      <category>discuss</category>
    </item>
    <item>
      <title>Ques &amp; Ans</title>
      <dc:creator>SumantaWeb</dc:creator>
      <pubDate>Thu, 30 Sep 2021 04:12:03 +0000</pubDate>
      <link>https://dev.to/sumanta_thefrontdev/ques-ans-25nf</link>
      <guid>https://dev.to/sumanta_thefrontdev/ques-ans-25nf</guid>
      <description>&lt;p&gt;You all can ask some front-end&lt;br&gt;
And I will try to answer them!&lt;/p&gt;

&lt;p&gt;Comment your questions below!!&lt;/p&gt;

</description>
      <category>discuss</category>
      <category>webdev</category>
      <category>watercooler</category>
    </item>
    <item>
      <title>How??</title>
      <dc:creator>SumantaWeb</dc:creator>
      <pubDate>Tue, 28 Sep 2021 11:28:12 +0000</pubDate>
      <link>https://dev.to/sumanta_thefrontdev/how-1ik5</link>
      <guid>https://dev.to/sumanta_thefrontdev/how-1ik5</guid>
      <description>&lt;p&gt;How to create a dev.to podcast??&lt;/p&gt;

</description>
      <category>doubt</category>
    </item>
    <item>
      <title>Intro to VS Code for WEB - DEVs
Chapter 1 - Introduction</title>
      <dc:creator>SumantaWeb</dc:creator>
      <pubDate>Tue, 28 Sep 2021 05:08:18 +0000</pubDate>
      <link>https://dev.to/sumanta_thefrontdev/intro-to-vs-code-for-web-devs-chapter-1-introduction-57ic</link>
      <guid>https://dev.to/sumanta_thefrontdev/intro-to-vs-code-for-web-devs-chapter-1-introduction-57ic</guid>
      <description>&lt;h1&gt;
  
  
  &lt;strong&gt;Introduction&lt;/strong&gt;
&lt;/h1&gt;

&lt;p&gt;It is a code - editor which is highly popular. VS Code, can be used to write code in any programming languages by downloading the respective packages of the language. But here we will be focusing on Webb - Dev only. For for Static Web pages or HTML , CSS &amp;amp; JS web pages nothing needs to be downloaded. Only VS Code is needed.&lt;/p&gt;

&lt;p&gt;Some other popular Altenatives to VS Code are Atom &amp;amp; Sublime Text. Another one is Replit which is cloud based or online. But As far today the most Popular is VS Code as per Google trends&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--BM4XPAzl--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/k9oa8tie7niby0cwsz5r.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--BM4XPAzl--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/k9oa8tie7niby0cwsz5r.PNG" alt="Source : Google trends"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h6&gt;
  
  
  source : Google trends
&lt;/h6&gt;

&lt;p&gt;It is Made by the Company &lt;strong&gt;&lt;em&gt;Microsoft&lt;/em&gt;&lt;/strong&gt;. We won't Recommend to install it from third party sites. Download it from &lt;a href="https://code.visualstudio.com/"&gt;here&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Wikipedia says : "Visual Studio Code is a code editor made by Microsoft for Windows, Linux and macOS. Features include support for debugging, syntax highlighting, intelligent code completion, snippets, code refactoring, and embedded Git."&lt;/p&gt;

</description>
      <category>codenewbie</category>
      <category>vscode</category>
    </item>
    <item>
      <title>Two Great Series!</title>
      <dc:creator>SumantaWeb</dc:creator>
      <pubDate>Tue, 28 Sep 2021 03:54:00 +0000</pubDate>
      <link>https://dev.to/sumanta_thefrontdev/two-great-series-2p14</link>
      <guid>https://dev.to/sumanta_thefrontdev/two-great-series-2p14</guid>
      <description>&lt;p&gt;&lt;em&gt;I will be starting two great dev.to series&lt;/em&gt;&lt;br&gt;
the topics are as follows:-&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1)Intro to VS Code for WEB - DEVs&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;2)Newbie Front - end&lt;/strong&gt;&lt;br&gt;
(5 Volumes)&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;-&amp;gt; Volume 1 = Introduction&lt;br&gt;
-&amp;gt; Volume 2 = Building Blocks &amp;amp; Vannila&lt;br&gt;
-&amp;gt; Volume 3 = Spice it up with Frameworks!!&lt;br&gt;
-&amp;gt; Volume 4 = UI with Figma&lt;br&gt;
-&amp;gt; Volume 5 = Some Additional Resources&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Hope You like the Series!! Its focused On Newbies but anyone can access and refresh their knowledge.&lt;/p&gt;

</description>
      <category>codenewbie</category>
      <category>vscode</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
