<?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: Godwin Daniel</title>
    <description>The latest articles on DEV Community by Godwin Daniel (@godwindaniel10).</description>
    <link>https://dev.to/godwindaniel10</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%2F585950%2Fe2c26c5c-2b3b-468a-ada1-e16be286cdd0.jpg</url>
      <title>DEV Community: Godwin Daniel</title>
      <link>https://dev.to/godwindaniel10</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/godwindaniel10"/>
    <language>en</language>
    <item>
      <title>Cracked Skin Image Created Using CSS</title>
      <dc:creator>Godwin Daniel</dc:creator>
      <pubDate>Fri, 18 Jun 2021 16:56:36 +0000</pubDate>
      <link>https://dev.to/godwindaniel10/cracked-skin-image-created-using-css-i9b</link>
      <guid>https://dev.to/godwindaniel10/cracked-skin-image-created-using-css-i9b</guid>
      <description>&lt;p&gt;&lt;iframe height="600" src="https://codepen.io/godwin070/embed/PopLdQe?height=600&amp;amp;default-tab=result&amp;amp;embed-version=2"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

</description>
      <category>codepen</category>
    </item>
    <item>
      <title>How to Add Tailwind CSS to Your Angular Application 2021</title>
      <dc:creator>Godwin Daniel</dc:creator>
      <pubDate>Tue, 16 Mar 2021 14:47:52 +0000</pubDate>
      <link>https://dev.to/godwindaniel10/how-to-add-tailwind-css-to-your-angular-application-2021-32gj</link>
      <guid>https://dev.to/godwindaniel10/how-to-add-tailwind-css-to-your-angular-application-2021-32gj</guid>
      <description>&lt;p&gt;According to the official documentation, Tailwind CSS is a utility-first CSS framework for rapidly building custom user interfaces. I like to think of it as a cool way to write inline styling and achieve an awesome interface without writing a single line of your own CSS.   Angular, on the other hand, is a platform that allows you to build high-quality enterprise applications. Combine Angular with Tailwind CSS and you have a perfect stack for building top-notch web applications.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;In this article, I will walk you through how you can add &lt;br&gt;
       Tailwind CSS to your Angular application.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;🚩  This article assumes that you're using the Angular CLI &lt;br&gt;
       version 11.2.0 or higher.&lt;/p&gt;
&lt;h1&gt;
  
  
  1. Generate a new Angular application
&lt;/h1&gt;

&lt;p&gt;Let's start by creating a new Angular project using the ng new command:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;   ng new my-app
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;When the CLI asks you "which stylesheet format would you like to use?" choose CSS because:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;With Tailwind, you don't need a CSS preprocessor like Sass. &lt;br&gt;
 You'll rarely need to write custom CSS anyway.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Your CSS will compile much faster because it won't need to &lt;br&gt;
 pass through multiple compilation pipelines.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  2. Install the needed tailwind dependencies
&lt;/h1&gt;

&lt;p&gt;Now, install the required dependencies:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;   ng add @ngneat/tailwind
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;blockquote&gt;
&lt;p&gt;follow the instructions below:&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;   ? Would you like to enable dark mode?

     none
     class
     media
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;select &lt;strong&gt;class&lt;/strong&gt;  then click (enter)&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;   ? Would you like to use tailwind directives and functions in 
     component styles? (might increase build time) (y/N) y
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;   ? What @tailwindcss plugins do you want to enable?

     ⭕ aspect-ratio
     ⭕ forms ✔
     ⭕ Line-clamp
     ⭕ typography ✔
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;select &lt;strong&gt;forms&lt;/strong&gt; &amp;amp; &lt;strong&gt;typography&lt;/strong&gt; &lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;The command above install all needed packages and update the &lt;br&gt;
  project files.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h1&gt;
  
  
  3. Enjoy
&lt;/h1&gt;

&lt;p&gt;You can now start your Angular application and enjoy using Tailwind:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;   ng serve --open
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;p&gt;&lt;code&gt;If you enjoyed this article, follow [@CodeBase__](https://twitter.com/CodeBase__) on Twitter for more content like this.&lt;/code&gt;&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>angular</category>
      <category>tailwindcss</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
