<?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: Idighekere Udo</title>
    <description>The latest articles on DEV Community by Idighekere Udo (@idighekere).</description>
    <link>https://dev.to/idighekere</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%2F1042975%2F666abc58-1675-433f-98a3-f268ec979568.png</url>
      <title>DEV Community: Idighekere Udo</title>
      <link>https://dev.to/idighekere</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/idighekere"/>
    <language>en</language>
    <item>
      <title>Why I want to Be a Front-End Developer and How HNG Will Help me Achieve My Goals</title>
      <dc:creator>Idighekere Udo</dc:creator>
      <pubDate>Sun, 02 Feb 2025 16:02:28 +0000</pubDate>
      <link>https://dev.to/idighekere/why-i-want-to-be-a-front-end-developer-and-how-hng-will-help-me-achieve-my-goals-28mk</link>
      <guid>https://dev.to/idighekere/why-i-want-to-be-a-front-end-developer-and-how-hng-will-help-me-achieve-my-goals-28mk</guid>
      <description>&lt;p&gt;"A journey of a thousand miles begins with a single step". My journey began years back when I was introduced to Google's Blogger (blogspot.com) for creating blog articles, after experimenting for few months I transitioned to using &lt;a href="https://hng.tech/hire/wordpress-developers" rel="noopener noreferrer"&gt;Wordpress&lt;/a&gt; and also purchasing my first domain and having a site. The issue I've always had then was trying to configure a theme to make the site to fit my taste. I decided to learn HTML and CSS where I was now able to inspect my Wordpress site grab the classes and ids and make the changes to the styling and applying it to Theme Custom Stylings.&lt;/p&gt;

&lt;p&gt;I still felt a bit of limitation while using it because I had no knowledge of PHP which would have enabled me to create  custom Wordpress themes to my taste. I decided to learn Javascript to complement the knowledge I had. I was now able to build interactive user interfaces just by writing codes. &lt;br&gt;
I proceeded to learning &lt;a href="https://hng.tech/hire/reactjs-developers/" rel="noopener noreferrer"&gt;React JS&lt;/a&gt;, a framework of Javascript and built some projects with it. On joining HNG11 in 2024, I got to learn NextJS and Typescript and using Firebase which enabled me to create my first fullstack project.&lt;/p&gt;

&lt;p&gt;I chose frontend development because I liked creating intuitive user interfaces and experience. Learning React Native has also enabled me to use my knowledge of Javascript and React to build cross-platform applications. &lt;/p&gt;

&lt;p&gt;Joining HNG will enable me to work on amazing real-life projects, collaborating with backend and designers, staying up to date with the evolving technologies in the ecosystem.  The internship will also help me position myself for future job opportunities.&lt;/p&gt;

</description>
      <category>frontend</category>
      <category>webdev</category>
      <category>javascript</category>
      <category>programming</category>
    </item>
    <item>
      <title>Tailwind vs CSS</title>
      <dc:creator>Idighekere Udo</dc:creator>
      <pubDate>Thu, 27 Jun 2024 22:40:00 +0000</pubDate>
      <link>https://dev.to/idighekere/tailwind-vs-css-hpk</link>
      <guid>https://dev.to/idighekere/tailwind-vs-css-hpk</guid>
      <description>&lt;p&gt;It can be so tiring to write multiple lines of CSS styling in our web apps. One of the challenges I always face in using HTML and CSS is usually coming up with generic class names for my elements, but Tailwind CSS or Bootstrap comes in as an aid. The debate between which is best always springs up amongst developers and my peers at &lt;a href="https://HNG.tech/internship/"&gt;HNG&lt;/a&gt; usually try to convince me that Bootstrap is best, but I still take Tailwind CSS. &lt;/p&gt;

&lt;p&gt;This era of web development has evolved that frameworks and libraries are being utilized by developers to make codes much simplified and easier to be used.  After the reading this article, you should be able to: know what the frameworks are: get the differences &amp;amp; similarities between Tailwind CSS and Bootstrap; know which one to go for; and actually get know how and where to get started using them.&lt;/p&gt;

&lt;h2&gt;
  
  
  When should I start using CSS Frameworks?
&lt;/h2&gt;

&lt;p&gt;As a beginner, you can start using CSS frameworks when you know all the CSS required to build a good-looking user interface.&lt;br&gt;
 You should be able to use CSS to build responsive layouts that support different screen sizes,  some basic flexible layouts, use grid layouts etc.&lt;br&gt;
You shouldn't be in a haste to learn a CSS framework when you don't have a solid foundation of CSS.&lt;/p&gt;
&lt;h2&gt;
  
  
  Tailwind 🆚 Bootstrap
&lt;/h2&gt;

&lt;p&gt;If you have checked the official documentation of the above frameworks, you will get to know more about them.&lt;br&gt;
If you haven't, I got you.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Tailwind CSS&lt;/strong&gt;&lt;br&gt;
Tailwind CSS is a utility-first CSS framework for rapidly building modern websites without ever leaving your HTML. It is packed with classes flex, pt-4, text-center and rotate-90 etc which simply means you don't have to think of class names for your html elements and not also writing long css stylings&lt;/p&gt;

&lt;p&gt;Without Tailwind&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;//HTML
&amp;lt;button class="subscribe-button"&amp;gt;Subscribe &amp;lt;/button&amp;gt;

//CSS
.subscribe-button {
   padding-right: 1rem;
   padding-left: 1rem;
}

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

&lt;/div&gt;



&lt;p&gt;With tailwind&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;//HTML
&amp;lt;button class="px-4"&amp;gt;Subscribe &amp;lt;/button&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You can see that writing just &lt;code&gt;px-4&lt;/code&gt; in the class attribute in Tailwindcss is equivalent to writing the class name and &lt;code&gt;padding-right: 1rem; &amp;amp; padding-left: 1rem;&lt;/code&gt; in CSS&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Bootstrap&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
Bootstrap is a UI (User Interface) Toolkit, which means it has pre-built components for buttons, modal, accordian, navbar, footers etc.&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 type="button" class="btn btn-primary"&amp;gt;Primary&amp;lt;/button&amp;gt;
&amp;lt;button type="button" class="btn btn-secondary"&amp;gt;Secondary&amp;lt;/button&amp;gt;
&amp;lt;button type="button" class="btn btn-success"&amp;gt;Success&amp;lt;/button&amp;gt;
&amp;lt;button type="button" class="btn btn-danger"&amp;gt;Danger&amp;lt;/button&amp;gt;
&amp;lt;button type="button" class="btn btn-warning"&amp;gt;Warning&amp;lt;/button&amp;gt;
&amp;lt;button type="button" class="btn btn-info"&amp;gt;Info&amp;lt;/button&amp;gt;
&amp;lt;button type="button" class="btn btn-light"&amp;gt;Light&amp;lt;/button&amp;gt;
&amp;lt;button type="button" class="btn btn-dark"&amp;gt;Dark&amp;lt;/button&amp;gt;

&amp;lt;button type="button" class="btn btn-link"&amp;gt;Link&amp;lt;/button&amp;gt;

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

&lt;/div&gt;



&lt;p&gt;Result.&lt;br&gt;
&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcv2bg87mepju8ses44fv.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcv2bg87mepju8ses44fv.jpg" alt="Different kind of buttons using bootstrap" width="720" height="336"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You can see that you don't need to write much styling for a button you will just need to specify what kind of button it is. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Tailwind &amp;amp; Bootstrap Differences&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Application created using Tailwind are always flexible and unique whereas that of Bootstrap are generally identical because it already has in-built templates for websites.&lt;/li&gt;
&lt;li&gt;Tailwind offers unique utility-first classes while Bootstrap offers ready-made themes and templates. &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Tailwind &amp;amp; Bootstrap Similarities&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Less CSS codes&lt;/li&gt;
&lt;li&gt;The usage of the both frameworks makes the developer not to worry about class names for the elements.&lt;/li&gt;
&lt;li&gt;It saves the developer's time trying to write css properties. &lt;/li&gt;
&lt;li&gt;You might have to always run back to the documentation to get the setup procedure and correct class name for what you want to achieve. &lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Which one should I choose?
&lt;/h2&gt;

&lt;p&gt;There's no better answer to which is better or the best,it all lies on developer's preference.&lt;br&gt;
If you'll need a website ready within a short period of time, Bootstrap is the best fit as it has pre-built components like sidebars, buttons, navbars, footers, cards, accordian, alert, spinner etc. &lt;br&gt;
If you'll need your site to look unique and flexible (being able to design it to your taste), then Tailwind is the best fit. &lt;br&gt;
Most developers often say that Tailwindcss makes code ugly to be read because of the numerous utility classes you will have to write to achieve your design, so if you happen to agree with them, then you should consider using Bootstrap.&lt;/p&gt;

&lt;h2&gt;
  
  
  Installation
&lt;/h2&gt;

&lt;p&gt;Both frameworks require certain procedures to be followed before you can start using them. You'll have to head over to Tailwind CSS doc &amp;amp; Bootstrap doc for the setup procedure. I wrote this article to onboarding you to the frameworks. &lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;In this article, you have learnt when you can start using any of the framework, how they differ, what they share in common, which one to choose. &lt;br&gt;
Enroll as a frontend developer at &lt;a href="https://hng.tech/internship/"&gt;HNG&lt;/a&gt; to gain more experience.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>css</category>
      <category>tailwindcss</category>
      <category>bootstrap</category>
    </item>
  </channel>
</rss>
