<?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: suman_-</title>
    <description>The latest articles on DEV Community by suman_- (@suman_07).</description>
    <link>https://dev.to/suman_07</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%2F3327896%2F4c2db32a-8085-4c87-8b59-021b28c4b63f.jpg</url>
      <title>DEV Community: suman_-</title>
      <link>https://dev.to/suman_07</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/suman_07"/>
    <language>en</language>
    <item>
      <title>Css vs Tailwind</title>
      <dc:creator>suman_-</dc:creator>
      <pubDate>Wed, 09 Jul 2025 09:33:06 +0000</pubDate>
      <link>https://dev.to/suman_07/css-vs-tailwind-2eik</link>
      <guid>https://dev.to/suman_07/css-vs-tailwind-2eik</guid>
      <description>&lt;p&gt;&lt;strong&gt;What is the main difference between CSS and Tailwind CSS?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;When I started learning CSS, I used to wonder how hard it would be to build a full website. In my first project, I used pure CSS and ended up writing around &lt;strong&gt;600 lines of code&lt;/strong&gt; just to style the frontend. It was a good learning experience, but quite time-consuming.&lt;/p&gt;

&lt;p&gt;But now that I’ve learned &lt;strong&gt;Tailwind CSS&lt;/strong&gt;, I realize how &lt;strong&gt;easy and efficient&lt;/strong&gt; it can be to build websites.&lt;/p&gt;

&lt;p&gt;🔍 &lt;strong&gt;Example:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Let’s say you want to create a box and give it a background color.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;In traditional CSS:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;You have to create a separate CSS file (or use a &lt;code&gt;&amp;lt;style&amp;gt;&lt;/code&gt; tag or inline styles, which is not clean).&lt;/li&gt;
&lt;li&gt;Then you write something like:
&lt;/li&gt;
&lt;/ul&gt;

&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;div&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"box"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&amp;lt;/div&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;




&lt;/li&gt;

&lt;/ul&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;```css
.box {
  background-color: blue;
}
```
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;In &lt;strong&gt;Tailwind CSS&lt;/strong&gt;:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;You can do it directly in the HTML:
&lt;/li&gt;
&lt;/ul&gt;

&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;div&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"bg-blue-500"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&amp;lt;/div&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;




&lt;/li&gt;

&lt;/ul&gt;

&lt;p&gt;You don’t need a separate CSS file — just include the Tailwind CSS CDN or set it up in your project, and you’re good to go.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>css</category>
      <category>learning</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Today i have build my first project...</title>
      <dc:creator>suman_-</dc:creator>
      <pubDate>Sun, 06 Jul 2025 10:07:03 +0000</pubDate>
      <link>https://dev.to/suman_07/today-i-have-build-my-first-project-1k79</link>
      <guid>https://dev.to/suman_07/today-i-have-build-my-first-project-1k79</guid>
      <description>&lt;p&gt;🌐 I’ve built my first project using HTML &amp;amp; CSS – a fully responsive EdTech website named Skillora!&lt;/p&gt;

&lt;p&gt;While I know that Tailwind CSS is widely used nowadays and helps in building UI faster with utility classes, I intentionally chose to work with pure CSS for this project. My aim was to get hands-on experience with core CSS concepts like flexbox, grid, media queries, and responsiveness from the ground up. I believe that before using abstraction tools, having a solid understanding of the basics is crucial.&lt;/p&gt;

&lt;p&gt;📱 Built with a mobile-first approach&lt;br&gt;
🎨 Designed with a clean, modern layout&lt;br&gt;
💻 Practiced structuring semantic HTML and writing maintainable CSS&lt;br&gt;
🧠 Learned a lot about responsive design, visual hierarchy, and layout building&lt;br&gt;
🔗 Check it out here: &lt;a href="https://suman0777.github.io/Skillora/" rel="noopener noreferrer"&gt;my web url -&amp;gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This project marks the beginning of my web development journey. I’m looking forward to exploring JavaScript next, and later diving into frameworks like Tailwind CSS and React.&lt;/p&gt;

&lt;p&gt;I’d really appreciate your feedback! Let me know what you think 🙌&lt;/p&gt;

&lt;h1&gt;
  
  
  HTML #CSS #WebDevelopment #ResponsiveDesign #FrontendDevelopment #EdTech #100DaysOfCode #CodingJourney #DevPortfolio
&lt;/h1&gt;

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