<?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: Kunal Anand</title>
    <description>The latest articles on DEV Community by Kunal Anand (@kunal_dev01).</description>
    <link>https://dev.to/kunal_dev01</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%2F540873%2F233957b3-1444-4c50-b433-e6413465c67b.jpg</url>
      <title>DEV Community: Kunal Anand</title>
      <link>https://dev.to/kunal_dev01</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/kunal_dev01"/>
    <language>en</language>
    <item>
      <title>App That Will Help You Learn To Code(BEST)</title>
      <dc:creator>Kunal Anand</dc:creator>
      <pubDate>Mon, 21 Dec 2020 13:02:02 +0000</pubDate>
      <link>https://dev.to/kunal_dev01/app-that-will-help-you-learn-to-code-best-50de</link>
      <guid>https://dev.to/kunal_dev01/app-that-will-help-you-learn-to-code-best-50de</guid>
      <description>&lt;p&gt;Technology is constantly growing and with that comes new careers and opportunities. Coding is a major part of that world and it can be a vital skill. Do you have the desire to learn to code, but not sure where to start or have the means to go back to school to learn? Luckily, there are a few ways to learn to code like a pro just by using your phone.&lt;/p&gt;

&lt;p&gt;Here is a app that will help you learn to code for beginers specially...&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;This was i was talking about&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Udacity&lt;/strong&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  coding
&lt;/h1&gt;

&lt;h2&gt;
  
  
  coding
&lt;/h2&gt;

&lt;h3&gt;
  
  
  coding
&lt;/h3&gt;

&lt;h4&gt;
  
  
  coding
&lt;/h4&gt;

&lt;p&gt;&lt;em&gt;details&lt;/em&gt;&lt;br&gt;
The best thing about this app is the many choices of coding you can learn. From HTML, CSS, JavaScript, Python, and other- this app offers courses taught by industry leaders from places like Google and Facebook. The app is free for many of the courses, but if you opt for the premium version of the app- you can gain access to feedback from those in their field and connect with other's learning how to code as well. This is more than a platform to learn, but it helps build a community and make connections with those interested in coding. Some of the premium courses recently released can actually teach you how to build artificial intelligence as well, but can be a bit pricey ranging from $1000-$2400 a course.&lt;/p&gt;

&lt;h2&gt;
  
  
  Pics-
&lt;/h2&gt;

&lt;h2&gt;
  
  
  Click on the blue text to open image
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://thumbor.forbes.com/thumbor/960x0/https%3A%2F%2Fblogs-images.forbes.com%2Fnicolemartin1%2Ffiles%2F2019%2F04%2Fudacity-1200x630.jpg"&gt;logo&lt;/a&gt;&lt;br&gt;
&lt;a href="https://www.classcentral.com/report/wp-content/uploads/2018/12/Screenshot_2018-12-18-Udacity-Free-Online-Classes-Nanodegrees-Udacity.jpg"&gt;dashboard&lt;/a&gt;&lt;br&gt;
&lt;a href="https://onlinecoursetutorials.com/wp-content/uploads/2019/10/best-udacity-courses.png"&gt;others&lt;/a&gt;&lt;/p&gt;

</description>
      <category>apps</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Why is CSS important?</title>
      <dc:creator>Kunal Anand</dc:creator>
      <pubDate>Mon, 21 Dec 2020 12:22:29 +0000</pubDate>
      <link>https://dev.to/kunal_dev01/why-is-css-important-1i1</link>
      <guid>https://dev.to/kunal_dev01/why-is-css-important-1i1</guid>
      <description>&lt;p&gt;BOLD:CSS is important because it allows web designers, developer, bloggers, and so forth to make our websites unique and attractive. CSS gives us the opportunity to play with a page layout, adjust colors and fonts, add effects to images, etc.&lt;/p&gt;

&lt;p&gt;While in the past it was possible to add style via HTML or more simpler CSS, CSS3 has really expanded and allows for more creativity.&lt;/p&gt;

&lt;p&gt;Ultimately, it makes our lives easier. CSS allows us to separate the presentation from the structure (HTML) into different files.&lt;/p&gt;

</description>
      <category>css</category>
      <category>learning</category>
    </item>
    <item>
      <title>4 Important CSS Properties You Must Know</title>
      <dc:creator>Kunal Anand</dc:creator>
      <pubDate>Tue, 15 Dec 2020 14:19:27 +0000</pubDate>
      <link>https://dev.to/kunal_dev01/4-important-css-properties-you-must-know-28n1</link>
      <guid>https://dev.to/kunal_dev01/4-important-css-properties-you-must-know-28n1</guid>
      <description>&lt;p&gt;CSS can be seem to be difficult at a first glance when you’re new to it. You may be confused about the different CSS properties, what they do and what they are for. Don’t worry, I got you covered.&lt;/p&gt;

&lt;p&gt;Have you heard of the 80/20 rule where 80% of the results come from 20% of the effort? Its the same in CSS. Which is why in this post, I’m going to talk about the most highly used CSS properties you will definitely need to know.&lt;/p&gt;

&lt;p&gt;1: Display&lt;br&gt;
Display takes on many different values, but only 4 are most commonly used.&lt;/p&gt;

&lt;p&gt;Eg-&lt;br&gt;
div {&lt;br&gt;
    display: block;&lt;br&gt;
    display: inline-block;&lt;br&gt;
    display: inline;&lt;br&gt;
    display: none;&lt;br&gt;
}&lt;br&gt;
block: Many HTML elements are set to this mode of display by browsers’ stylesheets. They include &lt;/p&gt;, &lt;ul&gt; and text blocks like &lt;p&gt;. Block level elements by default take up as much space as they can, and they cannot be placed on the same horizontal line with any other display modes, include other block elements. (Exception: unless they are floated)&lt;/p&gt;

&lt;p&gt;With block elements, you gain the ability to alter the element’s width and height to your liking, which is why they are used for layouts&lt;/p&gt;

&lt;p&gt;inline: The inline mode wraps many HTML elements tighty around them and is the defaults for all elements that are not specified with any other display values. Elements can be placed side by side on the same line as inline elements. Think about the &lt;strong&gt; tag that bolds elements, the &lt;em&gt; tag that creates italics and &lt;a&gt; tags that allow you to link to other web pages. These are all examples of inline elements. You will not be able to change an inline element’s width and height.&lt;/a&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;inline-block: This is one display value that combines the properties of both block elements and inline elements. You get the ability to set a height and width, and the element can appear on the same horizontal line as other elements.&lt;/p&gt;

&lt;p&gt;none: Display none hides the element from the website and it will not be shown visually. This is very useful for CSS Dropdown menus where additional options appear when you hover on navigation menus. The rationale is that elements are set to a display value of none initially, and the display value is changed to block on hover.&lt;/p&gt;

&lt;p&gt;2: Width and Height&lt;br&gt;
Width and height properties are used closely with display:block and display:inline to set the width and height of HTML elements while creating a website. Common units units for Width and Height are:&lt;/p&gt;

&lt;p&gt;px - Pixels.&lt;br&gt;
em - A unit of measurement, where 1 em = current font size.&lt;br&gt;
rem - Root em. Same measurement as em, but makes life much easier without the inheritance problem&lt;br&gt;
% - Percentages.&lt;br&gt;
auto - highly useful unit, will explain below.&lt;br&gt;
Other units of measurement can be found at the W3 Schools website. If you’re wondering about the difference between px, em and rem, check out this great article on font sizing with rem by Jonathan Snook&lt;/p&gt;

&lt;p&gt;Extremely useful properties like max-width, min-width, max-height and min-height come into play as well when you’re making responsive websites. Here’s one example of how auto and max-width can be used to make sure images fit tightly and snugly into available space:&lt;/p&gt;

&lt;p&gt;Eg-&lt;br&gt;
img {&lt;br&gt;
    max-width: 100%;&lt;br&gt;
    height: auto;&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;3: Margin and Padding&lt;br&gt;
Margins are paddings are things that will definitely appear. Knowing how these things work will be extremely beneficial when writing CSS.&lt;/p&gt;

&lt;p&gt;Margins and Paddings dictate the spaces between elements on your website. They are very similar and have the same units as Width and Height mentioned above.&lt;/p&gt;

&lt;p&gt;The only difference between margins and paddings is the area the exert control over. Margins affect the area outside of borders whereas paddings affect areas inside the border. It is useful to refer to the box model below:&lt;/p&gt;

&lt;p&gt;CSS Box Model&lt;/p&gt;

&lt;p&gt;Ordinarily, margins are written in this manner:&lt;/p&gt;

&lt;p&gt;Eg-&lt;br&gt;
div{&lt;br&gt;
    margin-top: 20px;&lt;br&gt;
    margin-bottom: 20px;&lt;br&gt;
    margin-right: 10px;&lt;br&gt;
    margin-left: 10px&lt;br&gt;
}&lt;br&gt;
They can be written in shorthand to simplify the lines of codes and make it easier to read. In fact, shorthands are the standard practice and you should know them. Here’s a quick explanation:&lt;/p&gt;

&lt;p&gt;div{&lt;br&gt;
   margin: 20px 10px 20px 10px;&lt;br&gt;
   /*  This shorthand refers to TOP, Right, Bottom, Left. Its easier to picture a clock at 12, 3, 6 and 9 respectively */&lt;/p&gt;

&lt;p&gt;margin: 20px 10px 20px;&lt;br&gt;
   /* This refers to Top, Left and Right, Bottom */&lt;/p&gt;

&lt;p&gt;margin: 20px 10px;&lt;br&gt;
   /* This refers to Top and Bottom, Left and Right */&lt;/p&gt;

&lt;p&gt;margin: 20px;&lt;br&gt;
   /* This refers to 20px worth of margin on all 4 sides */&lt;br&gt;
}&lt;br&gt;
Extra tip: margins with auto on the left and right are used to center an element with a display value of block. Its written simply as:&lt;/p&gt;

&lt;p&gt;div {&lt;br&gt;
   margin: 0 auto;&lt;br&gt;
}&lt;br&gt;
4: Border&lt;br&gt;
Borders are… borders. I’m pretty sure you don’t need an explanation of what borders are.&lt;/p&gt;

&lt;p&gt;Borders have 3 different properties that you have take care of:&lt;/p&gt;

&lt;p&gt;border-width – width of the border. Same units as width and height&lt;br&gt;
border-style – style of the border. Usual values are solid and dashed. For a complete list, take a look at W3 Schools Website&lt;br&gt;
border-color – color of the border. Hex, and rgb values can be used.&lt;br&gt;
Instead of writing the longer version, you could declare the border shorthand in this way:&lt;/p&gt;

&lt;p&gt;div{&lt;br&gt;
    border: 1px solid black;&lt;br&gt;
    /* border width, style and color */&lt;br&gt;
}&lt;br&gt;
Likewise to margins and paddings, borders refer to all 4 sides. If you are only interested in applying borders to 1 or 2 sides, I generally prefer to stick by border-top, border-bottom, border-left or border-right.&lt;/p&gt;

&lt;p&gt;4: Border&lt;br&gt;
Borders are… borders. I’m pretty sure you don’t need an explanation of what borders are.&lt;/p&gt;

&lt;p&gt;Borders have 3 different properties that you have take care of:&lt;/p&gt;

&lt;p&gt;border-width – width of the border. Same units as width and height&lt;br&gt;
border-style – style of the border. Usual values are solid and dashed. For a complete list, take a look at W3 Schools Website&lt;br&gt;
border-color – color of the border. Hex, and rgb values can be used.&lt;br&gt;
Instead of writing the longer version, you could declare the border shorthand in this way:&lt;/p&gt;

&lt;p&gt;Eg-&lt;br&gt;
div{&lt;br&gt;
    border: 1px solid black;&lt;br&gt;
    /* border width, style and color */&lt;br&gt;
}&lt;br&gt;
Likewise to margins and paddings, borders refer to all 4 sides. If you are only interested in applying borders to 1 or 2 sides, I generally prefer to stick by border-top, border-bottom, border-left or border-right.&lt;/p&gt;


&lt;/ul&gt;

</description>
      <category>css</category>
      <category>csselements</category>
      <category>cssdesigning</category>
      <category>css3</category>
    </item>
  </channel>
</rss>
