<?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: Aya Bouchiha</title>
    <description>The latest articles on DEV Community by Aya Bouchiha (@ayabouchiha).</description>
    <link>https://dev.to/ayabouchiha</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%2F470969%2F1b4154b5-5dcb-4506-b33c-40333126702f.jpg</url>
      <title>DEV Community: Aya Bouchiha</title>
      <link>https://dev.to/ayabouchiha</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ayabouchiha"/>
    <language>en</language>
    <item>
      <title>All You Need To Know About react-icons.</title>
      <dc:creator>Aya Bouchiha</dc:creator>
      <pubDate>Tue, 21 Sep 2021 22:22:03 +0000</pubDate>
      <link>https://dev.to/ayabouchiha/-6n5</link>
      <guid>https://dev.to/ayabouchiha/-6n5</guid>
      <description>&lt;p&gt;Hi, I'm &lt;a href="//developer.aya.b@gmail.com"&gt;Aya Bouchiha&lt;/a&gt;, today, we'll talk about one of the most popular react libraries, which is &lt;strong&gt;react icons&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is react-icons?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;react-icons&lt;/strong&gt;: is one of the most famous react libraries that provides us the icons of 20+ libraries including font awesome, bootstrap icons, box icons...&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://react-icons.github.io/react-icons/"&gt;home page&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://github.com/react-icons/react-icons"&gt;github&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

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



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npm &lt;span class="nb"&gt;install &lt;/span&gt;react-icons &lt;span class="nt"&gt;--save&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;yarn add react-icons
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  How To Import A Specific Icon
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight jsx"&gt;&lt;code&gt;&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="nx"&gt;x&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;react-icons/first-two-letters-of-x&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Example
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight jsx"&gt;&lt;code&gt;&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="nx"&gt;ExAmple&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;react-icons/ex&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Real Examples
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight jsx"&gt;&lt;code&gt;&lt;span class="c1"&gt;// importing from font awesome icons&lt;/span&gt;
&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="nx"&gt;FaHtml5&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;react-icons/fa&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

&lt;span class="c1"&gt;// importing from bootstrap icons&lt;/span&gt;
&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="nx"&gt;BsFillReplyFill&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;react-icons/bs&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

&lt;span class="c1"&gt;//  importing from material design icons&lt;/span&gt;
&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="nx"&gt;MdDoneAll&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;react-icons/md&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

&lt;span class="c1"&gt;// importing from box icons&lt;/span&gt;
&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="nx"&gt;BiCalendar&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;react-icons/bi&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Usage
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight jsx"&gt;&lt;code&gt;&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="nx"&gt;FaCss3Alt&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;react-icons/fa&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;Component&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;
        &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nc"&gt;FaCss3Alt&lt;/span&gt;  &lt;span class="p"&gt;/&amp;gt;&lt;/span&gt;
    &lt;span class="p"&gt;):&lt;/span&gt;
&lt;span class="p"&gt;};&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Icon Context (Configuration)
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight jsx"&gt;&lt;code&gt;&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="nx"&gt;IconContext&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;react-icons&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="nx"&gt;FaCss3Alt&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;react-icons/fa&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;Component&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;
        &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nc"&gt;IconContext&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nc"&gt;Provider&lt;/span&gt; &lt;span class="na"&gt;value&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="si"&gt;{&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;
            &lt;span class="na"&gt;size&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;1.5em&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
            &lt;span class="na"&gt;className&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;css-icon&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
            &lt;span class="na"&gt;style&lt;/span&gt;&lt;span class="p"&gt;:{&lt;/span&gt;&lt;span class="na"&gt;margin&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;.5em 1emp&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,},&lt;/span&gt;
            &lt;span class="na"&gt;color&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;blue&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;
        &lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="si"&gt;}&lt;/span&gt;
        &lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
            &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nc"&gt;FaCss3Alt&lt;/span&gt;  &lt;span class="p"&gt;/&amp;gt;&lt;/span&gt;
        &lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nc"&gt;IconContext&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nc"&gt;Provider&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
    &lt;span class="p"&gt;):&lt;/span&gt;
&lt;span class="p"&gt;};&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Note: by default the size property is &lt;strong&gt;1em&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Suggested Posts
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://dev.to/ayabouchiha/do-you-like-using-your-phone-to-evlove-your-productivity-and-your-coding-skills-here-is-10-mobile-apps-that-will-help-you-3b0o"&gt;Do You Like Using Your Phone To Evolve Your Productivity and Your Coding Skills ? Here are 15 Mobile Apps That Will Help You to!&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/ayabouchiha/my-favourite-library-for-providing-logging-in-logging-out-with-google-functionalities-in-my-react-apps-50l0"&gt;My Favourite Library For Providing Logging In &amp;amp; Logging Out With Google Functionalities In My React Apps&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/ayabouchiha/10-projects-tutorials-for-learning-react-js-4i07"&gt;Projects Tutorials For Learning React.js&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/ayabouchiha/resources-to-master-5-popular-react-libraries-2n81"&gt;Resources to master 5 popular react libraries&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Have a great day!&lt;/p&gt;

</description>
      <category>react</category>
      <category>javascript</category>
      <category>tutorial</category>
      <category>typescript</category>
    </item>
    <item>
      <title>Do You Want To Learn Django ? Here Are Some Awesome Ressources.</title>
      <dc:creator>Aya Bouchiha</dc:creator>
      <pubDate>Tue, 21 Sep 2021 22:21:15 +0000</pubDate>
      <link>https://dev.to/ayabouchiha/-33g1</link>
      <guid>https://dev.to/ayabouchiha/-33g1</guid>
      <description>&lt;h2&gt;
  
  
  Youtube Courses
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Programming With Mosh
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://www.youtube.com/watch?v=rHux0gMZ3Eg"&gt;Django Tutorial For Beginners (2021)&lt;/a&gt;(1h)&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Tech With Tim
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://www.youtube.com/watch?v=sm1mokevMWk"&gt;Django For Beginners - Full Tutorial&lt;/a&gt;(3h)&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  FreeCodeCamp
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://www.youtube.com/watch?v=o0XbHvKxw7Y"&gt;Django For Everybody - full python university course&lt;/a&gt;(18h 30min)&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.youtube.com/watch?v=F5mRW0jo-U4&amp;amp;t=12309s"&gt;Python Django Web Framework - Full Course for Beginners&lt;/a&gt;(3h 45min)&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.youtube.com/watch?v=jBzwzrDvZ18"&gt;Python Backend Web Development Course (with Django)&lt;/a&gt;(10h)&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Traversy Media
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://www.youtube.com/watch?v=e1IyzVyrLSU"&gt;Python Django Crash Course&lt;/a&gt;(1h)&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Academind
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://www.youtube.com/watch?v=t7DrJqcUviA"&gt;Python Django Course for Beginners 2021&lt;/a&gt;(4h)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Books
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.amazon.com/Django-Beginners-Build-websites-Python-ebook/dp/B079ZZLRRL"&gt;Django for Beginners: Build websites with Python and Django&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.amazon.com/Django-Example-powerful-reliable-applications-ebook/dp/B0868SN6HF/"&gt;Django 3 By Example: Build powerful and reliable Python web applications from scratch, 3rd Edition&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.amazon.com/Django-Professionals-Production-websites-Python/dp/1081582162"&gt;Django for Professionals: Production websites with Python &amp;amp; Django&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Have an awesome day!&lt;/p&gt;

</description>
      <category>django</category>
      <category>python</category>
      <category>beginners</category>
      <category>codenewbie</category>
    </item>
    <item>
      <title>Do You Like Using Your Phone To Evolve Your Productivity and Your Coding Skills ? Here are 15 Mobile Apps That Will Help You!</title>
      <dc:creator>Aya Bouchiha</dc:creator>
      <pubDate>Mon, 20 Sep 2021 22:59:45 +0000</pubDate>
      <link>https://dev.to/ayabouchiha/do-you-like-using-your-phone-to-evlove-your-productivity-and-your-coding-skills-here-is-10-mobile-apps-that-will-help-you-3b0o</link>
      <guid>https://dev.to/ayabouchiha/do-you-like-using-your-phone-to-evlove-your-productivity-and-your-coding-skills-here-is-10-mobile-apps-that-will-help-you-3b0o</guid>
      <description>&lt;p&gt;Hello Everybody, this is my #99 post, I'm &lt;a href="//developer.aya.b@gmail.com"&gt;Aya Bouchiha&lt;/a&gt;, on this beautiful day, I would like to share with you 15 free mobile apps that will help you to evolve your productivity and your coding skills.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;note&lt;/strong&gt;: the mentioned apps in this post are free, but they could include some paid features.&lt;/p&gt;

&lt;h2&gt;
  
  
  Google Keep, Easy Notes, Tick Tick, Notion
&lt;/h2&gt;

&lt;p&gt;&lt;em&gt;“If you don’t know where you are going, you’ll end up someplace else.”&lt;/em&gt;(Yogi Berra)&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Google keep&lt;/strong&gt;: is one of the most used applications for writing notes, ideas..., which let you share and collaborate with people on notes and lists.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://keep.google.com/"&gt;website&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://play.google.com/store/apps/details?id=com.google.android.keep&amp;amp;hl=en&amp;amp;gl=US"&gt;android&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://apps.apple.com/us/app/google-keep-notes-and-lists/id1029207872"&gt;ios&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Easy Notes&lt;/strong&gt; is an &lt;strong&gt;android&lt;/strong&gt; app for taking notes with colorful backgrounds and checklists, that provides you many features like creating photos, audio notes,  sorting them...&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://play.google.com/store/apps/details?id=easynotes.notes.notepad.notebook.privatenotes.note&amp;amp;hl=en&amp;amp;gl=US"&gt;android&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;TickTick&lt;/strong&gt;: is a mobile app used for writing, managing your tasks, to-do lists, daily routine, tracking, and developing new habits. However, It provides you Pomodoro timer to keep you focused.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://ticktick.com/?language=en_US"&gt;website&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://play.google.com/store/apps/details?id=com.ticktick.task&amp;amp;hl=en&amp;amp;gl=US"&gt;android&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://apps.apple.com/us/app/ticktick-to-do-list-calendar/id626144601"&gt;ios&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Notion&lt;/strong&gt;: an editor that blends notes, to-do lists, bookmarks, code snippets, tasks, wikis, and more awesome features.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.notion.so/"&gt;website&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://play.google.com/store/apps/details?id=notion.id&amp;amp;hl=en&amp;amp;gl=US"&gt;android&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://apps.apple.com/us/app/notion-notes-projects-docs/id1232780281"&gt;ios&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Coursera, Udemy
&lt;/h2&gt;

&lt;p&gt;&lt;em&gt;"The roots of education are bitter, but the fruit is sweet."&lt;/em&gt; (Aristotle)&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Coursera&lt;/strong&gt;: is one of the best platforms for online learning and self-education, It provides great courses for anyone, anywhere access to online courses and degrees from world-class universities and companies.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.coursera.org/"&gt;website&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://play.google.com/store/apps/details?id=org.coursera.android&amp;amp;hl=en&amp;amp;gl=US"&gt;android&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://apps.apple.com/us/app/coursera-learn-new-skills/id736535961"&gt;ios&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Udemy&lt;/strong&gt; is an online learning platform that provides individual online courses that cover different categories like programming, marketing, content creation...&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://udemy.com/"&gt;website&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://play.google.com/store/apps/details?id=com.udemy.android&amp;amp;hl=en&amp;amp;gl=US"&gt;android&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://apps.apple.com/us/app/udemy-online-video-courses/id562413829"&gt;ios&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  GeeksForGeeks
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;GeeksForGeeks&lt;/strong&gt;: is one of the most famous platforms that provide amazing and well-explained articles for studying, learning, and mastering algorithms and data structures.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.geeksforgeeks.org/"&gt;website&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://play.google.com/store/apps/developer?id=GeeksforGeeks&amp;amp;hl=en_US&amp;amp;gl=US"&gt;android&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  900+ Programming Books
&lt;/h2&gt;

&lt;p&gt;&lt;em&gt;"a reader lives a thousand lives before he dies, the man who never reads lives only one"&lt;/em&gt;(George R. R. Martin)&lt;/p&gt;

&lt;p&gt;Everyone knows reading books is a great habit that every person, man, woman, child..., need to understand more life, to enrich his vocabulary, to develope his analytical and communicational skills.&lt;/p&gt;

&lt;p&gt;according to me and many programmers, Youtube tutorials and courses will never replace the power and the valuable benefits of books.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;900+ Programming Books&lt;/strong&gt;: is an &lt;strong&gt;android&lt;/strong&gt; app that offers more than 900 free, and paid books that cover more than 60 programming languages.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://play.google.com/store/apps/details?id=com.codinghomies.programming.books.learn.to.code&amp;amp;hl=en&amp;amp;gl=US"&gt;android&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Moon+ Reader, ReadEra, Marvin 3
&lt;/h2&gt;

&lt;p&gt;most developers, like me and you :), prefer and love the dark theme, that's why ReadEra are in my favorites app lists. &lt;a href="https://dev.to/ayabouchiha/my-5-favourite-vs-code-themes-26h8"&gt;my 5 favorites vs code themes&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;ReadEra&lt;/strong&gt; is an &lt;strong&gt;android&lt;/strong&gt; application for reading ebooks and viewing documents, in addition, It is for free and doesn't contain ads.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://play.google.com/store/apps/details?id=org.readera&amp;amp;hl=en&amp;amp;gl=US"&gt;android&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Moon+ Reader: is an &lt;strong&gt;android&lt;/strong&gt; app for reading ebooks that allows you to load books in practically any ebook format you can find, including epub, mobi, chm, cbr, cbz, umd, fb2, txt, html, rar, zip, or OPDS..., It gives you Full visual like line space, font scale, bold, italic, in addition, It provides you 10+ themes including Dark one.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://play.google.com/store/apps/details?id=com.flyersoft.moonreader&amp;amp;hl=en&amp;amp;gl=US"&gt;android&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Marvin 3: is one of the best &lt;strong&gt;ios&lt;/strong&gt; app for reading ebooks, which contains awesome features like providing light/&lt;strong&gt;dark&lt;/strong&gt; themes, reading statistics, Vertical scrolling, Goodreads integration...&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://apps.apple.com/us/app/marvin-3/id1086482858"&gt;ios&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Miro, Microsoft Whiteboard
&lt;/h2&gt;

&lt;p&gt;&lt;em&gt;“If I had an hour to solve a problem I'd spend 55 minutes thinking about the problem and five minutes thinking about solutions."&lt;/em&gt;(Albert Einstein)&lt;/p&gt;

&lt;p&gt;as a programmer, you will face many times some hard and complex problems that require focus, understanding and visualizing them, that is why using an online whiteboard will help you a lot to solve them faster, However, It lets you work more effectively with your team especially when It comes to planning and managing the projects together.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Microsoft Whiteboard&lt;/strong&gt;: (for android and ios) provides a freeform intelligent canvas where teams can ideate, create, and collaborate visually via the cloud. Designed for pen and touch, it lets you write or draw as smoothly as you would with ink, while automatically recognizing and transforming shapes and tables as you draw.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.microsoft.com/en-us/microsoft-365/microsoft-whiteboard/digital-whiteboard-app"&gt;website&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://play.google.com/store/apps/details?id=com.microsoft.whiteboard.publicpreview&amp;amp;hl=en&amp;amp;gl=US"&gt;android&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://apps.apple.com/us/app/microsoft-whiteboard/id1352499399"&gt;ios&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Miro&lt;/strong&gt;: is an online collaborative whiteboard that enables distributed teams to work effectively together, from brainstorming with digital sticky notes to planning and managing agile workflow.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://miro.com/"&gt;website&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://play.google.com/store/apps/details?id=com.realtimeboard&amp;amp;hl=en&amp;amp;gl=US"&gt;android&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://apps.apple.com/us/app/miro-collaborative-whiteboard/id1180074773"&gt;ios&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;In my opinion, I prefer &lt;em&gt;Miro&lt;/em&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Thirty
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Thirty&lt;/strong&gt;: is a social network (&lt;strong&gt;android app&lt;/strong&gt;) that will help you to start 30 days challenges to track and stop bad habits and start building new effective habits, in addition, It let you share your daily goals and habits with your friends and other people and more fun features.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://play.google.com/store/apps/details?id=com.twominds.thirty&amp;amp;hl=en&amp;amp;gl=US"&gt;anroid&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Dcoder, Spck Code Editor
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Dcoder&lt;/strong&gt; is a mobile IDE with Syntax highlighting which let you Debug and Write a code in more than 35 Programming Languages and libraries (&lt;em&gt;python, ruby, reactjs, django, html, javascript, nodejs...&lt;/em&gt;) see compilation results and errors at the same time on the same screen. in addition, Dcoder will help you to evolve and develop your problem-solving skills by solving available challenges in the app. &lt;a href="https://dev.to/ayabouchiha/11-websites-to-practice-you-coding-and-your-problem-solving-skills-51k9"&gt;11 Websites To Practice You Coding And Your Problem Solving Skills&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://dcoder.tech/"&gt;website&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://play.google.com/store/apps/details?id=com.paprbit.dcoder&amp;amp;hl=en&amp;amp;gl=US"&gt;android&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://apps.apple.com/ky/app/dcoder-code-compiler-ide/id1488496978"&gt;ios&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Spck Code Editor&lt;/strong&gt;: is an &lt;strong&gt;android&lt;/strong&gt; app that lets you write code, commit to any git repository .in addition, It provides you cloning feature from Github/Gitlab/Bitbucket, AWS CodeCommit, Azure DevOps...&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Main languages supported: &lt;em&gt;JavaScript, CSS, HTML&lt;/em&gt;
&lt;/li&gt;
&lt;li&gt;Smart code-hinting support: &lt;em&gt;TypeScript, JavaScript, TSX, JSX, CSS, Less, SCSS, HTML&lt;/em&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Syntax highlighting only: &lt;em&gt;Python, Ruby, R, Perl, Julia, Scala, Java, Scala, Kotlin, OCaml, PHP, Golang, Rust, C, C#, Stylus, CoffeeScript, Pug, Markdown, Batch, Bash, ActionScript, Coldfusion, HaXe&lt;/em&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://play.google.com/store/apps/details?id=io.spck&amp;amp;hl=en&amp;amp;gl=US"&gt;android&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  To Contact Me
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;email: &lt;a href="mailto:developer.aya.b@gmail.com"&gt;developer.aya.b@gmail.com&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;telegram: &lt;a href="https://t.me/AyaBouchiha"&gt;AyaBouchiha&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Whatsapp: +212677070579&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Please, feel free to write your favorites apps in the comments section.&lt;/p&gt;

&lt;p&gt;Have an excellent day!&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://dev.to/ayabouchiha/youtube-courses-projects-to-master-javascript-3lhc"&gt;Youtube Courses, Projects To Master Javascript&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/ayabouchiha/9-websites-plateforms-that-i-visit-them-at-least-2-times-in-a-weak-as-a-developer-387n"&gt;9 websites &amp;amp; platforms that I visit at least 2 times in a week&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/ayabouchiha/this-is-your-complete-guide-to-all-python-list-methods-b4"&gt;This Is Your Complete Guide To All Python List Methods&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/ayabouchiha/your-complete-guide-to-math-object-in-javascript-4o5d"&gt;Your Essential Guide To Math Object In Javascript&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>productivity</category>
      <category>beginners</category>
      <category>codenewbie</category>
      <category>100daysofcode</category>
    </item>
    <item>
      <title>Are You Bored Of Converting "px" to "em" Using A Calculator, SASS Will Solve The Problem</title>
      <dc:creator>Aya Bouchiha</dc:creator>
      <pubDate>Sat, 18 Sep 2021 21:56:48 +0000</pubDate>
      <link>https://dev.to/ayabouchiha/are-you-bored-of-converting-px-to-em-using-a-calculator-sass-will-solve-the-problem-2cp6</link>
      <guid>https://dev.to/ayabouchiha/are-you-bored-of-converting-px-to-em-using-a-calculator-sass-will-solve-the-problem-2cp6</guid>
      <description>&lt;p&gt;Hi, I'm &lt;a href="//developer.aya.b@gmail"&gt;Aya Bouchiha&lt;/a&gt;, today, I decided to share with you the solution of converting "px" to "rem" or 'em' using a calculator because using It, will distract you to focus more in your work, and will let you waste a considerable amount of time, especially if the project is so big or your computer is slow.&lt;/p&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%2Fjfbefrmssinn6d6m3mxt.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%2Fjfbefrmssinn6d6m3mxt.png" alt="Aya Bouchiha"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What's px?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;px&lt;/strong&gt;: is an absolute unit for measuring.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What's them?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;em&lt;/strong&gt;: is a relative unit to the font-size of its parent, used for measuring, It is equal to 16px.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  px vs em vs rem
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://chiamakaikeanyi.dev/sizing-in-css-px-vs-em-vs-rem/" rel="noopener noreferrer"&gt;Sizing in CSS: px vs em vs rem by Chiamaka Ikeanyi&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Converting px to em
&lt;/h2&gt;

&lt;p&gt;by default:&lt;br&gt;
&lt;code&gt;1em = 16px&lt;/code&gt;&lt;br&gt;
&lt;code&gt;pxValue = emValue * 16&lt;/code&gt; &lt;br&gt;
&lt;code&gt;emValue = pxValue / 16&lt;/code&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Should I Use A Calculator For Converting px to em?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;If you are familiar with scss, the answer is no, no, and no! so how?&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Creating A Function For Converting px to em
&lt;/h2&gt;

&lt;h3&gt;
  
  
  index.scss
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight scss"&gt;&lt;code&gt;&lt;span class="k"&gt;@function&lt;/span&gt; &lt;span class="nf"&gt;to-em&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nv"&gt;$val-px&lt;/span&gt;&lt;span class="p"&gt;){&lt;/span&gt;
    &lt;span class="k"&gt;@return&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nv"&gt;$val-px&lt;/span&gt; &lt;span class="o"&gt;/&lt;/span&gt; &lt;span class="m"&gt;16&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="n"&gt;em&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Testing Our Function
&lt;/h2&gt;

&lt;h3&gt;
  
  
  index.scss
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight scss"&gt;&lt;code&gt;&lt;span class="c1"&gt;// index.scss&lt;/span&gt;

&lt;span class="c1"&gt;// px =&amp;gt; em&lt;/span&gt;
&lt;span class="k"&gt;@function&lt;/span&gt; &lt;span class="nf"&gt;to-em&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nv"&gt;$val-px&lt;/span&gt;&lt;span class="p"&gt;){&lt;/span&gt;
    &lt;span class="k"&gt;@return&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nv"&gt;$val-px&lt;/span&gt; &lt;span class="o"&gt;/&lt;/span&gt; &lt;span class="m"&gt;16&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="n"&gt;em&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;

&lt;span class="nt"&gt;h1&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="nt"&gt;font-size&lt;/span&gt;&lt;span class="nd"&gt;:to-em&lt;/span&gt;&lt;span class="o"&gt;(&lt;/span&gt;&lt;span class="nt"&gt;24&lt;/span&gt;&lt;span class="o"&gt;)&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;span class="nt"&gt;div&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="nl"&gt;height&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nf"&gt;to-em&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="m"&gt;200&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
    &lt;span class="nl"&gt;width&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nf"&gt;to-em&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="m"&gt;400&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Result
&lt;/h2&gt;

&lt;h3&gt;
  
  
  index.css
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight css"&gt;&lt;code&gt;&lt;span class="nt"&gt;h1&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="nl"&gt;font-size&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;1.5em&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;

&lt;span class="nt"&gt;div&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="nl"&gt;height&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;12.5em&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="nl"&gt;width&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;25em&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Have an amazing day!&lt;/p&gt;

</description>
      <category>css</category>
      <category>html</category>
      <category>webdev</category>
      <category>beginners</category>
    </item>
    <item>
      <title>My 5 Favorites VS Code Themes</title>
      <dc:creator>Aya Bouchiha</dc:creator>
      <pubDate>Sat, 18 Sep 2021 19:30:53 +0000</pubDate>
      <link>https://dev.to/ayabouchiha/my-5-favourite-vs-code-themes-26h8</link>
      <guid>https://dev.to/ayabouchiha/my-5-favourite-vs-code-themes-26h8</guid>
      <description>&lt;h2&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=kohlbachjan.the-best-theme" rel="noopener noreferrer"&gt;The Best Theme&lt;/a&gt;
&lt;/h2&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%2Fg430l7mwmbetmc18ne53.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%2Fg430l7mwmbetmc18ne53.PNG" alt="thebesttheme"&gt;&lt;/a&gt; &lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=dracula-theme.theme-dracula" rel="noopener noreferrer"&gt;Dracula&lt;/a&gt;
&lt;/h2&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%2Fojdhqr9ezprn9sbl92y5.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%2Fojdhqr9ezprn9sbl92y5.PNG" alt="dracula"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=GitHub.github-vscode-theme" rel="noopener noreferrer"&gt;Github Theme&lt;/a&gt;
&lt;/h2&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%2Fnn15c9zaxwqs48wn5cu1.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%2Fnn15c9zaxwqs48wn5cu1.PNG" alt="githubDark"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=sdras.night-owl" rel="noopener noreferrer"&gt;Night OWL&lt;/a&gt;
&lt;/h2&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%2Fm47mtpzqb8br9dwaohc5.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%2Fm47mtpzqb8br9dwaohc5.PNG" alt="nightOwl"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=ahmadawais.shades-of-purple" rel="noopener noreferrer"&gt;Shades Of Purple&lt;/a&gt;
&lt;/h2&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%2Fac7xa82xg70a9as78tyw.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%2Fac7xa82xg70a9as78tyw.PNG" alt="Shades Of Purple"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="//developer.aya.b@gmail.com"&gt;Aya Bouchiha&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Suggested Posts
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://dev.to/ayabouchiha/5-cool-css-properties-part-1-nkg/"&gt;part 1: (5 cool CSS cool properties)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/ayabouchiha/part-2-5-cool-css-properties-bdl"&gt;part 2: (5 cool CSS cool properties)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/ayabouchiha/57-essential-html-tags-to-know-as-a-beginnert-1f3f"&gt;57 Essential HTML Tags To Know As A Beginner&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/ayabouchiha/5-html-tags-that-almost-nobody-knows-5p5"&gt;part-1: 5 HTML Tags That Almost Nobody Knows&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/ayabouchiha/part-2-5-html-tags-that-almost-nobody-knows-nj8"&gt;Part-2: 5 HTML Tags That Almost Nobody Knows&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Have a nice day!&lt;/p&gt;

</description>
      <category>vscode</category>
      <category>beginners</category>
      <category>codenewbie</category>
    </item>
    <item>
      <title>Projects Tutorials For Learning React.js</title>
      <dc:creator>Aya Bouchiha</dc:creator>
      <pubDate>Fri, 17 Sep 2021 23:48:20 +0000</pubDate>
      <link>https://dev.to/ayabouchiha/10-projects-tutorials-for-learning-react-js-4i07</link>
      <guid>https://dev.to/ayabouchiha/10-projects-tutorials-for-learning-react-js-4i07</guid>
      <description>&lt;h2&gt;
  
  
  Projects tutorials for learning REACT.JS
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.youtube.com/watch?v=R_OERlafbmw&amp;amp;list=PL-J2q3Ga50oMQa1JdSJxYoZELwOJAXExP"&gt; netflix, disney, testla, facebook, whatsapp, amazon clone... - playlist (20 videos)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.youtube.com/watch?v=U9T6YkEDkMo"&gt; recipe app using react (50min) &lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.youtube.com/watch?v=wPQ1-33teR4"&gt; React Tutorial: Build an e-commerce site from scratch using React and Netlify (6h 30min)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.youtube.com/watch?v=a_7Z7C_JCyo&amp;amp;t=30377s"&gt; 15 projects using React (9h) &lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.youtube.com/watch?v=f6HYLHrYpGs"&gt; React budget calculator (2h) &lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.youtube.com/watch?v=FiGmAI5e91M"&gt; React Projects (traversy media) - playlist (30 videos)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.youtube.com/watch?v=khJlrj3Y6Ls"&gt; Build a COVID-19 Tracker Application - React JS Project (Hooks, Material UI, Charts js) (1h 30min) &lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.youtube.com/watch?v=7WwtzsSHdpI"&gt; Response React Portfolio Website Tutorial (2h 30min)  &lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.youtube.com/watch?v=c1xTDSIXit8"&gt; React E-Commerce App Design Tutorial | React Shopping Cart UI Design (3h) &lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.youtube.com/watch?v=sZ0bZGfg_m4"&gt; Movies App - React Project (40min) &lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Have a good day!&lt;/p&gt;

</description>
      <category>react</category>
      <category>javascript</category>
      <category>webdev</category>
      <category>typescript</category>
    </item>
    <item>
      <title>part 3: 5 cool css properties</title>
      <dc:creator>Aya Bouchiha</dc:creator>
      <pubDate>Fri, 17 Sep 2021 01:02:37 +0000</pubDate>
      <link>https://dev.to/ayabouchiha/part-3-5-cool-css-properties-lag</link>
      <guid>https://dev.to/ayabouchiha/part-3-5-cool-css-properties-lag</guid>
      <description>&lt;p&gt;Hi, I'm &lt;a href="//developer.aya.b@gmail.com"&gt;Aya Bouchiha&lt;/a&gt;, and this is part 3 of 5 cool CSS properties.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://dev.to/ayabouchiha/5-cool-css-properties-part-1-nkg/"&gt;part 1&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/ayabouchiha/part-2-5-cool-css-properties-bdl"&gt;part 2&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  word spacing
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;word-spacing&lt;/strong&gt;: specify the space between words.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;iframe height="600" src="https://codepen.io/Aya_Bouchiha/embed/jOwYdXq?height=600&amp;amp;default-tab=result&amp;amp;embed-version=2"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;h2&gt;
  
  
  line-height
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;line-height&lt;/strong&gt;: specifies the line-height of specified content.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;iframe height="600" src="https://codepen.io/Aya_Bouchiha/embed/NWgXoJG?height=600&amp;amp;default-tab=result&amp;amp;embed-version=2"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;h2&gt;
  
  
  object-fit
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;object-fit&lt;/strong&gt;: specifies how an image, video should be displayed and resized. &lt;a href="https://www.w3schools.com/cssref/css3_pr_object-fit.asp"&gt;more info&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;iframe height="600" src="https://codepen.io/Aya_Bouchiha/embed/wvepOBK?height=600&amp;amp;default-tab=result&amp;amp;embed-version=2"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;h2&gt;
  
  
  letter-spacing
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;letter-spacing&lt;/strong&gt;: specifies the space between the letters.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;iframe height="600" src="https://codepen.io/Aya_Bouchiha/embed/dyRJwyY?height=600&amp;amp;default-tab=result&amp;amp;embed-version=2"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;h2&gt;
  
  
  cursor
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;cursor&lt;/strong&gt;: specify the cursor type.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.w3schools.com/cssref/pr_class_cursor.asp"&gt;all cursor types&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;iframe height="600" src="https://codepen.io/Aya_Bouchiha/embed/vYZpvXy?height=600&amp;amp;default-tab=result&amp;amp;embed-version=2"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;h2&gt;
  
  
  Summary
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;cursor&lt;/strong&gt;: specify the cursor type.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;letter-spacing&lt;/strong&gt;: specifies the space between the letters.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;object-fit&lt;/strong&gt;: specifies how an image, video should be displayed and resized.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;line-height&lt;/strong&gt;: specifies the line-height of specified content.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;word-spacing&lt;/strong&gt;: specify the space between words.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Suggested Posts
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://dev.to/ayabouchiha/5-cool-css-properties-part-1-nkg/"&gt;part 1: (5 cool CSS cool properties)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/ayabouchiha/part-2-5-cool-css-properties-bdl"&gt;part 2: (5 cool CSS cool properties)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/ayabouchiha/57-essential-html-tags-to-know-as-a-beginnert-1f3f"&gt;57 Essential HTML Tags To Know As A Beginner&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/ayabouchiha/5-html-tags-that-almost-nobody-knows-5p5"&gt;part-1: 5 HTML Tags That Almost Nobody Knows&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/ayabouchiha/part-2-5-html-tags-that-almost-nobody-knows-nj8"&gt;Part-2: 5 HTML Tags That Almost Nobody Knows&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Have a great day!&lt;/p&gt;

</description>
      <category>css</category>
      <category>html</category>
      <category>codenewbie</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Part 2: 5 cool CSS properties </title>
      <dc:creator>Aya Bouchiha</dc:creator>
      <pubDate>Wed, 15 Sep 2021 23:55:43 +0000</pubDate>
      <link>https://dev.to/ayabouchiha/part-2-5-cool-css-properties-bdl</link>
      <guid>https://dev.to/ayabouchiha/part-2-5-cool-css-properties-bdl</guid>
      <description>&lt;p&gt;Hi, I'm &lt;a href="//developer.aya.b@gmail.com"&gt;Aya Bouchiha&lt;/a&gt;, and this is part 2 of  &lt;a href="https://dev.to/ayabouchiha/5-cool-css-properties-part-1-nkg/"&gt;5 cool CSS properties&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  quotes
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;quotes&lt;/strong&gt;: helps you to chose the quotation marks for a quote element.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;iframe height="600" src="https://codepen.io/Aya_Bouchiha/embed/eYRejbX?height=600&amp;amp;default-tab=result&amp;amp;embed-version=2"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;h2&gt;
  
  
  scroll-behavior
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;scroll-behavior&lt;/strong&gt;:  specifies whether to smoothly animate the scroll position, instead of a straight jump, when the user clicks on a link within a scrollable box.&lt;a href="https://www.w3schools.com/cssref/pr_scroll-behavior.asp"&gt;more info&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;iframe height="600" src="https://codepen.io/Aya_Bouchiha/embed/bGRYmeb?height=600&amp;amp;default-tab=result&amp;amp;embed-version=2"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;h2&gt;
  
  
  user-select
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;user-select&lt;/strong&gt;: used to allow or deny the user to select content like a text, image...&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;iframe height="600" src="https://codepen.io/Aya_Bouchiha/embed/JjJOmNL?height=600&amp;amp;default-tab=result&amp;amp;embed-version=2"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;h2&gt;
  
  
  writing-mode
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;writing-mode&lt;/strong&gt;: allows you to specify the writing mode (horizontal-tb, vertical-lr, vertical-rl)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;iframe height="600" src="https://codepen.io/Aya_Bouchiha/embed/abwVRGY?height=600&amp;amp;default-tab=result&amp;amp;embed-version=2"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;h2&gt;
  
  
  text-overflow
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;text-overflow&lt;/strong&gt;: defines the way that the overflowed content should be displayed.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;iframe height="600" src="https://codepen.io/Aya_Bouchiha/embed/VwWrEqR?height=600&amp;amp;default-tab=result&amp;amp;embed-version=2"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;h2&gt;
  
  
  Summary
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;scroll-behavior&lt;/strong&gt;:  specifies whether to smoothly animate the scroll position, instead of a straight jump, when the user clicks on a link within a scrollable box.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;quotes&lt;/strong&gt;: helps you to chose the quotation marks for a quote element.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;user-select&lt;/strong&gt;: used to allow or deny the user to select content like a text, image...&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;writing-mode&lt;/strong&gt;: allows you to specify the writing mode (horizontal-tb, vertical-lr, vertical-rl)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;text-overflow&lt;/strong&gt;: defines the way that the overflowed content should be displayed.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Reference
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.w3schools.com/"&gt;https://www.w3schools.com/&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Suggested Posts
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://dev.to/ayabouchiha/57-essential-html-tags-to-know-as-a-beginnert-1f3f"&gt;57 Essential HTML Tags To Know As A Beginner&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/ayabouchiha/5-html-tags-that-almost-nobody-knows-5p5"&gt;part-1: 5 HTML Tags That Almost Nobody Knows&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/ayabouchiha/part-2-5-html-tags-that-almost-nobody-knows-nj8"&gt;Part-2: 5 HTML Tags That Almost Nobody Knows&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Have a great day!&lt;/p&gt;

</description>
      <category>css</category>
      <category>html</category>
      <category>webdev</category>
      <category>beginners</category>
    </item>
    <item>
      <title>5 cool CSS properties  (part 1)</title>
      <dc:creator>Aya Bouchiha</dc:creator>
      <pubDate>Wed, 15 Sep 2021 22:58:54 +0000</pubDate>
      <link>https://dev.to/ayabouchiha/5-cool-css-properties-part-1-nkg</link>
      <guid>https://dev.to/ayabouchiha/5-cool-css-properties-part-1-nkg</guid>
      <description>&lt;p&gt;Hi, I'm &lt;a href="//developer.aya.b@gmail.com"&gt;Aya Bouchiha&lt;/a&gt;, and this is part 1 of some cool CSS properties.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://dev.to/ayabouchiha/part-2-5-cool-css-properties-bdl"&gt;part 2 of some cool CSS properties&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  caret-color
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;caret-color&lt;/strong&gt;: used to change the cursor of editable elements like input fields.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;iframe height="600" src="https://codepen.io/Aya_Bouchiha/embed/ZEyaRpL?height=600&amp;amp;default-tab=result&amp;amp;embed-version=2"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;h2&gt;
  
  
  clip-path
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;clip-path&lt;/strong&gt;: used to hide a specific area of an element and build complex shapes like the octagon.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;iframe height="600" src="https://codepen.io/Aya_Bouchiha/embed/eYReKLe?height=600&amp;amp;default-tab=result&amp;amp;embed-version=2"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://bennettfeely.com/clippy/"&gt;website will help you to build complex shapes using clip-path&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  resources to learn about clip-path
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://css-tricks.com/almanac/properties/c/clip-path/"&gt;css-tricks (article)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=""&gt;designCourse (youtube video)&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  content
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;content&lt;/strong&gt;: used with :before &amp;amp; :after for adding a generated content w&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;iframe height="600" src="https://codepen.io/Aya_Bouchiha/embed/ZEyajYx?height=600&amp;amp;default-tab=result&amp;amp;embed-version=2"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://css-tricks.com/css-content/"&gt;more info&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  pointer-events
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;pointer-events&lt;/strong&gt;: specify that the user could react to pointer events or not.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;iframe height="600" src="https://codepen.io/Aya_Bouchiha/embed/QWgOBpq?height=600&amp;amp;default-tab=result&amp;amp;embed-version=2"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;h2&gt;
  
  
  resize
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;resize&lt;/strong&gt;: specify if an element is resizable or not.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;iframe height="600" src="https://codepen.io/Aya_Bouchiha/embed/gORXdeK?height=600&amp;amp;default-tab=result&amp;amp;embed-version=2"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;h2&gt;
  
  
  Summary
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;clip-path&lt;/strong&gt;: used to hide a specific area of an element and build complex shapes like the octagon.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;resize&lt;/strong&gt;: specify if an element is resizable or not.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;pointer-events&lt;/strong&gt;: specify that the user could react to pointer events or not.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;content&lt;/strong&gt;: used with :before &amp;amp; :after for adding a generated content.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;caret-color&lt;/strong&gt;: used to change the cursor of editable elements like input fields.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Reference
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.w3schools.com/"&gt;https://www.w3schools.com/&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Suggested Posts
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://dev.to/ayabouchiha/57-essential-html-tags-to-know-as-a-beginnert-1f3f"&gt;57 Essential HTML Tags To Know As A Beginner&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/ayabouchiha/5-html-tags-that-almost-nobody-knows-5p5"&gt;part-1: 5 HTML Tags That Almost Nobody Knows&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://dev.to/ayabouchiha/part-2-5-html-tags-that-almost-nobody-knows-nj8"&gt;Part-2: 5 HTML Tags That Almost Nobody Knows&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/ayabouchiha/part-2-5-cool-css-properties-bdl"&gt;part 2 of some cool CSS properties&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Have an amazing day!&lt;/p&gt;

</description>
      <category>css</category>
      <category>html</category>
      <category>webdev</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>57 Essential HTML Tags To Know As A Beginner</title>
      <dc:creator>Aya Bouchiha</dc:creator>
      <pubDate>Tue, 14 Sep 2021 23:48:44 +0000</pubDate>
      <link>https://dev.to/ayabouchiha/57-essential-html-tags-to-know-as-a-beginnert-1f3f</link>
      <guid>https://dev.to/ayabouchiha/57-essential-html-tags-to-know-as-a-beginnert-1f3f</guid>
      <description>&lt;p&gt;Hi everybody, I'm &lt;a href="//developer.aya.b@gmail.com"&gt;Aya Bouchiha&lt;/a&gt;, after creating two posts about 10 important HTML Tags, I decided to talk about 57 essential HTML tags to know as a beginner.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://dev.to/ayabouchiha/5-html-tags-that-almost-nobody-knows-5p5"&gt;part-1: 5 HTML Tags That Almost Nobody Knows&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/ayabouchiha/part-2-5-html-tags-that-almost-nobody-knows-nj8"&gt;Part-2: 5 HTML Tags That Almost Nobody Knows&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;but if you're not familiar with 'HTML tags', I highly recommend checking at least one of the given resources in this post. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://dev.to/ayabouchiha/resources-to-learn-html-css-cko"&gt;Resources To Learn HTML &amp;amp; CSS&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  57 Essential HTML Tag That Is Good To Know As Beginner.
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;div&amp;gt;&lt;/strong&gt;: for defining a division.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;header&amp;gt;&lt;/strong&gt;: for creating a header.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;section&amp;gt;&lt;/strong&gt;: for defining a section.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;address&amp;gt;&lt;/strong&gt;: is a tag that displays the contact information like email and phone number of the author of a document or an article&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;nav&amp;gt;&lt;/strong&gt;: for creating navigation.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;main&amp;gt;&lt;/strong&gt;: for assigning the main content.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;footer&amp;gt;&lt;/strong&gt;: for creating a footer.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;form&amp;gt;&lt;/strong&gt;: for defining a form which is a section that almost contains some input fields that the user should enter for sharing his information like login &amp;amp; sign up forms.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;time&amp;gt;&lt;/strong&gt;: for representing a specific period in time.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;label&amp;gt;&lt;/strong&gt;: for specifying a label like name, email, password for an input field.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;input&amp;gt;&lt;/strong&gt;: for creating an input field.&lt;/li&gt;
&lt;li&gt;&amp;lt;textarea /&amp;gt;: for creating a multiline input so that the user could write a text such as description or bio.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;select&amp;gt;&lt;/strong&gt;: for creating a drop-down menu. &lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;option&amp;gt;&lt;/strong&gt;: for creating an option of a drop-down menu&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;datalist&amp;gt;&lt;/strong&gt;: for creating a list of options that are established in advance.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;fieldset&amp;gt;&lt;/strong&gt;: for grouping a set of elements that discuss the same idea in a form element.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;legend&amp;gt;&lt;/strong&gt;: for defining a title of the fieldset element&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;wbr&amp;gt;&lt;/strong&gt;: for defining a word break chance.&lt;/li&gt;
&lt;li&gt;&amp;lt;br/&amp;gt;: for breaking a line&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;button&amp;gt;&lt;/strong&gt;: for creating a clickable element like text, image, video&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;code&amp;gt;&lt;/strong&gt;: used for defining a text as a code.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;kbd&amp;gt;&lt;/strong&gt;: used to define keyboard input, it is displayed with a monospace font&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;var&amp;gt;&lt;/strong&gt;: for indicating mathematical variables like x, y, and z.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;samp&amp;gt;&lt;/strong&gt;: is used to define sample output from a program.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;pre&amp;gt;&lt;/strong&gt;: for formatting a specific text.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;dl&amp;gt;&lt;/strong&gt;: is used with &lt;strong&gt;&amp;lt;dt&amp;gt;&lt;/strong&gt; and &lt;strong&gt;&amp;lt;dd&amp;gt;&lt;/strong&gt; to define a description list.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;dt&amp;gt;&lt;/strong&gt; defines a term in a description list.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;dd&amp;gt;&lt;/strong&gt; describes a term in a description list.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;del&amp;gt;&lt;/strong&gt;: defining a deleted text.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;ins&amp;gt;&lt;/strong&gt;: for defining an inserted text.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;em&amp;gt;&lt;/strong&gt;: create an emphasized (important) text.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;i&amp;gt;&lt;/strong&gt;: create a text with italic styling.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;u&amp;gt;&lt;/strong&gt;: defining an underlined text, (not recommended to use)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;b&amp;gt;&lt;/strong&gt;: for creating a bold text.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;strong&amp;gt;&lt;/strong&gt;: for specifying an important text with bold styling.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;small&amp;gt;&lt;/strong&gt;: for creating a text with a small size&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;dfn&amp;gt;&lt;/strong&gt;: used to specify a term that is going to be defined, most browsers display this element with an italic font style.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;abbr&amp;gt;&lt;/strong&gt;: defining an abbreviation, like HTML.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;h1&amp;gt;&lt;/strong&gt;: (h1, h2, h3,..., h6) for specifying a header of specific content.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;a&amp;gt;&lt;/strong&gt;: (anchor tag)for creating a link (hyperlink).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;mark&amp;gt;&lt;/strong&gt;: for highlighting a text.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;progress&amp;gt;&lt;/strong&gt;:&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;meter&amp;gt;&lt;/strong&gt;: for representing either a scalar value within a known range or a fractional value.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;noscript&amp;gt;&lt;/strong&gt;: for displaying alternate HTML content if the browser does not support scripting.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;q&amp;gt;&lt;/strong&gt;: for defining a "quote".&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;bloquote&amp;gt;&lt;/strong&gt;: for specifying that a text is taken from another place.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;table&amp;gt;&lt;/strong&gt;: for defining a table in your document.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;thead&amp;gt;&lt;/strong&gt;: (table head)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;tbody&amp;gt;&lt;/strong&gt;: (table body)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;th&amp;gt;&lt;/strong&gt;: for creating a title of a specific cell in your table&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;td&amp;gt;&lt;/strong&gt;: for creating a cell in your table&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;tr&amp;gt;&lt;/strong&gt;: (table row) for creating a row in your table&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;video&amp;gt;&lt;/strong&gt;: for displaying a video in your document.&lt;/li&gt;
&lt;li&gt;&amp;lt;img /&amp;gt;: for displaying an image in your document.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;ol&amp;gt;&lt;/strong&gt;: for creating an ordered list. &lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;ul&amp;gt;&lt;/strong&gt;: for creating an unordered list. &lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&amp;lt;li&amp;gt;&lt;/strong&gt;: for creating an item of a list.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Reference
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.w3schools.com/TAGS/default.ASP"&gt;www.w3schools.com&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Have a great day!&lt;/p&gt;

</description>
      <category>html</category>
      <category>webdev</category>
      <category>beginners</category>
      <category>codenewbie</category>
    </item>
    <item>
      <title>Resources To Learn HTML &amp; CSS</title>
      <dc:creator>Aya Bouchiha</dc:creator>
      <pubDate>Sun, 12 Sep 2021 22:59:42 +0000</pubDate>
      <link>https://dev.to/ayabouchiha/resources-to-learn-html-css-cko</link>
      <guid>https://dev.to/ayabouchiha/resources-to-learn-html-css-cko</guid>
      <description>&lt;p&gt;Hello, I'm &lt;a href="//developer.aya.b@gmail.com"&gt;Aya Bouchiha&lt;/a&gt;, today, I'm going to share with some helpful resources to learn HTML &amp;amp; CSS.&lt;/p&gt;

&lt;h2&gt;
  
  
  Youtube
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Course in one video
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.youtube.com/watch?v=mU6anWqZJcc"&gt;html 5 &amp;amp; css3 from scrash, freeCodeCamp (11h 30min)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.youtube.com/watch?v=D-h8L5hgW-w"&gt;HTML &amp;amp; CSS 2021, Design Course (2h 15min)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.youtube.com/watch?v=cyuzt1Dp8X8"&gt;HTML &amp;amp; CSS course, Bro Code (5h)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.youtube.com/watch?v=keJn4LSNuHk"&gt;HTML and CSS tutorial for beginners | HTML CSS Complete Course, Nerd's lesson (6h 45min)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.youtube.com/watch?v=qz0aGYrrlhU&amp;amp;t=1550s"&gt;Html &amp;amp; CSS crash course, programming with Mosh&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  playlist
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.youtube.com/watch?v=hu-q2zYwEYs&amp;amp;list=PL4cUxeGkcC9ivBf_eKCPIAYXWzLlPAm6G"&gt;HTML &amp;amp; CSS Crash Course Tutorial, The Net Ninja (11 video)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.youtube.com/watch?v=TKYsuU86-DQ&amp;amp;list=PL0eyrZgxdwhwNC5ppZo_dYGVjerQY3xYU"&gt;HTML &amp;amp; CSS tutorials, Dani Krossing (43 video)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.youtube.com/watch?v=LGQuIIv2RVA&amp;amp;list=PL4-IK0AVhVjM0xE0K2uZRvsM7LkIhsPT-"&gt;HTML and CSS for Beginners, Kevin Powel (23 videol&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Projects tutorials
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=UB1O30fR-EE&amp;amp;list=PLillGF-RfqbZTASqIqdvm1R5mLrQq79CU"&gt;I realy recommend checking this playlist: by travesy media (58 vidoe)&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Books
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.amazon.com/HTML-CSS-Design-Build-Websites/dp/1118008189"&gt;HTML and CSS: Design and Build Websites&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.amazon.com/HTML-CSS-Visual-QuickStart-Guide/dp/0321928830"&gt;HTML and CSS: Visual QuickStart Guide&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.amazon.com/CSS-Pocket-Reference-Visual-Presentation/dp/1449399037"&gt;CSS Pocket Reference: Visual Presentation for the Web&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;more books:&lt;br&gt;
&lt;a href="https://www.codeinwp.com/blog/best-html-css-books/"&gt;(10+ Best HTML/CSS Books for Beginners &amp;amp; Advanced Coders in 2021) by Davis Ported&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Cheat Sheet (pdf)
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://web.stanford.edu/group/csp/cs21/htmlcheatsheet.pdf"&gt;html&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://web.stanford.edu/group/csp/cs21/csscheatsheet.pdf"&gt;css&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Have a good day.&lt;/p&gt;

</description>
      <category>code</category>
      <category>beginners</category>
      <category>html</category>
      <category>css</category>
    </item>
    <item>
      <title>10 Android Apps to Evolve Your Programming Skills</title>
      <dc:creator>Aya Bouchiha</dc:creator>
      <pubDate>Sat, 11 Sep 2021 21:11:00 +0000</pubDate>
      <link>https://dev.to/ayabouchiha/10-android-apps-to-evolve-your-programming-skills-17ce</link>
      <guid>https://dev.to/ayabouchiha/10-android-apps-to-evolve-your-programming-skills-17ce</guid>
      <description>&lt;h2&gt;
  
  
  10 android apps to evolve your programming skills.
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://play.google.com/store/apps/details?id=com.datacamp&amp;amp;hl=en&amp;amp;gl=US"&gt;DataCamp: Learn Python, SQL &amp;amp; R coding&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://play.google.com/store/apps/details?id=com.getmimo&amp;amp;hl=en&amp;amp;gl=US"&gt;Mimo: Learn coding in HTML, JavaScript, Python&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://play.google.com/store/apps/details?id=com.learnprogramming.codecamp&amp;amp;hl=en&amp;amp;gl=US"&gt;Programming Hero: Coding Just Got Fun (beta)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://play.google.com/store/apps/details?id=com.area120.grasshopper&amp;amp;hl=en&amp;amp;gl=US"&gt;Grasshopper: Learn to Code&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://play.google.com/store/apps/details?id=com.freeit.java&amp;amp;hl=en&amp;amp;gl=US"&gt;Programming Hub: Learn to code&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://play.google.com/store/apps/details?id=com.sololearn&amp;amp;hl=en&amp;amp;gl=US"&gt;Sololearn: Learn to Code for Free&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://play.google.com/store/apps/details?id=com.codinghomies.programming.books.learn.to.code&amp;amp;hl=en&amp;amp;gl=US"&gt;900+ Programming Books - Free Coding Books at Once&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://play.google.com/store/apps/details?id=free.programming.programming&amp;amp;hl=en&amp;amp;gl=US"&gt;Learn DS &amp;amp; Algo, Programming Interview Preparation&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://play.google.com/store/apps/details?id=net.androidsquad.androidmaster&amp;amp;hl=en&amp;amp;gl=US"&gt;Master Coding - Learn Coding from Zero to Hero&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Have a good day!&lt;/p&gt;

</description>
      <category>codenewbie</category>
      <category>beginners</category>
      <category>100daysofcode</category>
    </item>
  </channel>
</rss>
