<?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: milky121</title>
    <description>The latest articles on DEV Community by milky121 (@milky121).</description>
    <link>https://dev.to/milky121</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%2F763090%2Fc46f4616-3902-4d12-a464-00b9d2db86e3.jpg</url>
      <title>DEV Community: milky121</title>
      <link>https://dev.to/milky121</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/milky121"/>
    <language>en</language>
    <item>
      <title>GROWING AND SHRINKING</title>
      <dc:creator>milky121</dc:creator>
      <pubDate>Sat, 18 Dec 2021 11:36:08 +0000</pubDate>
      <link>https://dev.to/milky121/growing-and-shrinking-28l5</link>
      <guid>https://dev.to/milky121/growing-and-shrinking-28l5</guid>
      <description>&lt;h1&gt;
  
  
  The Flex Shorthand
&lt;/h1&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;      The flex declaration is actually a shorthand for 3 properties that you can set on a flex item.

         Shorthand properties are CSS properties that let you set the values of multiple other CSS properties simultaneously. Using this property,you can write more concise stylesheets,saving time and energy.

   So, flex is actually a shorthand for flex-grow,flex-shrink and flex-basis.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--MuUV0ULm--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/juxqk906y8vo6fcpyzfz.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--MuUV0ULm--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/juxqk906y8vo6fcpyzfz.png" alt="Image description" width="408" height="341"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;  The default value of the flex property is shown in the above:flex-grow: 0,flex-shrink: 1,flex-basis: 0%.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;h2&gt;
  
  
  Flex-Grow
&lt;/h2&gt;

&lt;p&gt;It expects a single number as its value,and that number is used as the flex-item's "growth factor" . When we applied flex: 1 to every div inside our container,we telling every div to grow the same amount.&lt;/p&gt;
&lt;h2&gt;
  
  
  Flex-Shrink
&lt;/h2&gt;

&lt;p&gt;It is to flex-grow, but sets the "SHRINK FACTOR" of a flex item. flex-shrink only ends up being applied if the size of all flex items is larger than their parent container.&lt;br&gt;
                 The default shrink factor is flex-shrink: 1,you can also specify higher numbers to make certain items shrink at a higher rate than normal&lt;/p&gt;
&lt;h2&gt;
  
  
  note
&lt;/h2&gt;

&lt;p&gt;An important application to notice here is that when you specify flex-grow or flex-shrink,flex items do not necessarily respect your given values for width because when their parents is big enough, they grow to fill space.&lt;/p&gt;
&lt;h2&gt;
  
  
  Flex-Basis
&lt;/h2&gt;

&lt;p&gt;flex-basis simply sets the initial size of a flex item,so any sort of flex-growing or flex-shrinking starts from that baseline size. Shorthand value defaults to flex-basis: 0%&lt;/p&gt;
&lt;h2&gt;
  
  
  IMPORTANT NOTE
&lt;/h2&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; The actual default value for flex-basis is auto,but when you easily flex: 1 on an element, it interprets that as flex: 1 1 0. If you want to only adjust an item's flex-grow, you can simply do so directly, without the shorthand.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;thank you..&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>beginners</category>
      <category>css</category>
      <category>100daysofcode</category>
    </item>
    <item>
      <title>INTRODUCTION TO FLEXBOX</title>
      <dc:creator>milky121</dc:creator>
      <pubDate>Thu, 16 Dec 2021 10:35:13 +0000</pubDate>
      <link>https://dev.to/milky121/introduction-to-flexbox-1onn</link>
      <guid>https://dev.to/milky121/introduction-to-flexbox-1onn</guid>
      <description>&lt;h1&gt;
  
  
  INTRODUCTION
&lt;/h1&gt;

&lt;p&gt;As we see,there are many ways to move elements around on a webpage&lt;br&gt;
but FLEXBOX  is a relatively new way of manipulating elements in css and when it was introduced, it was revolutionary.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;           The FLEXBOX layout used today is very different what was first proposed, the CSS WORKING GROUP had proposed the idea of a flex layout in 2008 and publishing the first working draft in 2009.
           But nowadays, flexbox become the default way of positioning elements for many developers.It will be one of the most used tools in your toolbox.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;h1&gt;
  
  
  FLEXBOX
&lt;/h1&gt;

&lt;p&gt;It is a way to arrange items into rows or columns, where those items will flex(i.e grow or shrink)based on simple rule.&lt;/p&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;         &amp;lt;div class="flex-container&amp;gt;
            &amp;lt;div class="one"&amp;gt;&amp;lt;/div&amp;gt;
            &amp;lt;div class="two"&amp;gt;&amp;lt;/div&amp;gt;
            &amp;lt;div class="three&amp;gt;&amp;lt;/div&amp;gt;
       &amp;lt;/div&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;If you add another div to the HTML, inside of .flex-container, it will show up alongside the others and everything will flex to make it fit.&lt;/p&gt;

&lt;h1&gt;
  
  
  FLEX CONTAINERS AND FLEX ITEMS
&lt;/h1&gt;

&lt;p&gt;A flex containers is any elements that has display:flex on it.&lt;br&gt;
                    A flex item is any element that lives directly inside of a flex container.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--3InzLyJr--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/9qc4uods45gp6ssqbo38.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--3InzLyJr--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/9qc4uods45gp6ssqbo38.png" alt="Image description" width="880" height="308"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;   Somewhat confusingly, any element can be both a container and a item.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--u7YILbDO--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/vajap181gyhj3wlaatyz.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--u7YILbDO--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/vajap181gyhj3wlaatyz.png" alt="Image description" width="832" height="286"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;       This method of creating and nesting multiple flex, containers and items is a primary way we will be building up complex layouts.Hence FLEXBOX is a very powerful tool...
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;thank you...&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>html</category>
      <category>css</category>
      <category>100daysofcode</category>
    </item>
    <item>
      <title>CSS Foundations.</title>
      <dc:creator>milky121</dc:creator>
      <pubDate>Tue, 14 Dec 2021 12:01:01 +0000</pubDate>
      <link>https://dev.to/milky121/css-foundations-2ng8</link>
      <guid>https://dev.to/milky121/css-foundations-2ng8</guid>
      <description>&lt;h1&gt;
  
  
  CSS Foundations
&lt;/h1&gt;

&lt;p&gt;CSS(cascading style sheet),so what is the use of css?.The answer of this question is we use this for style our pages,add colors i.e it's all about to make our page attractive .&lt;/p&gt;

&lt;p&gt;But at first level,it has various rules.These rules are made up of a selector and a semi-colon separated list of declarations, with each of those declarations being made up of a property:value pair.&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--sujnVftz--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/sbrec5knteufl51rupyu.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--sujnVftz--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/sbrec5knteufl51rupyu.png" alt="Image description" width="300" height="225"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  SELECTORS
&lt;/h2&gt;

&lt;p&gt;It is a advanced way to select things instead of just looking at h1 h2 paragraph.&lt;/p&gt;

&lt;p&gt;NOTE- 'div' this is used for making a straight blank line on you text.&lt;/p&gt;

&lt;p&gt;Suppose, you wrote many paragraphs and you just wanted to change color of only the first paragraph so, by using 'selectors' you can easily do this.&lt;/p&gt;

&lt;h2&gt;
  
  
  CLASS SELECTORS
&lt;/h2&gt;

&lt;p&gt;Class selectors is used when you want to add color to the single div.Don't worry we will take an example to clear all these.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;  Let's move on to our first example.......
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;1.first of all u have to create a separate file named"styles.css"&lt;/p&gt;

&lt;p&gt;2.use HTML elements &lt;/p&gt;

&lt;p&gt;3.go to the style.css file &lt;/p&gt;

&lt;p&gt;4.write".box1" now you can add background color etc etc separately into your paragraph.&lt;/p&gt;

&lt;h2&gt;
  
  
  IMAGES HEIGHT AND WIDTH
&lt;/h2&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;If you want to make your image size in your own choice you can do this by using image height and width.

    img{
   width= 50px
   height=auto
   }              
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;h2&gt;
  
  
  EXTERNAL CSS
&lt;/h2&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;     It is the most common method and it involves creating a separate file for the css and linking it inside of an HTML's opening and closing tags with a self-closing &amp;lt;link&amp;gt; element.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;h2&gt;
  
  
  INTERNAL CSS
&lt;/h2&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;  It adds css with the html file itself instead of creating a completely separate file.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;h1&gt;
  
  
  INSPECTING HTML AND CSS
&lt;/h1&gt;

&lt;p&gt;If you have created a webpage,then click on right button of your  mouse and go to the inspect option,you can see the entire HTML structure of your page.&lt;br&gt;
    Something like this-&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--fse7BvXc--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/qjgd2d76zr1xiw2th22b.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--fse7BvXc--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/qjgd2d76zr1xiw2th22b.png" alt="Image description" width="680" height="574"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h1&gt;
  
  
  THE BOX MODEL
&lt;/h1&gt;

&lt;p&gt;In this section, you will learn how to put your page where you want or at a right place.&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--faIZ6XcD--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/nskz7ui03yt9vrc2mvla.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--faIZ6XcD--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/nskz7ui03yt9vrc2mvla.png" alt="Image description" width="538" height="392"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;                     It includes---
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;MARGIN&lt;br&gt;
It is a empty space around your element.&lt;/p&gt;

&lt;p&gt;PADDING &lt;br&gt;
It is a stroke around your element.&lt;/p&gt;

&lt;p&gt;BORDER&lt;br&gt;
It is a empty space with background in your element. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--J-jmVF_7--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/pxdkubl5y9g6zrmwd884.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--J-jmVF_7--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/pxdkubl5y9g6zrmwd884.png" alt="Image description" width="488" height="358"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  BLOCK V/S INLINE
&lt;/h1&gt;

&lt;p&gt;First I am going to tell you what does block means OK.&lt;/p&gt;

&lt;p&gt;##BLOCK##&lt;/p&gt;

&lt;p&gt;1.It always starts with a new line.&lt;br&gt;
2.Always takes up the full width available.&lt;br&gt;
3.It has a top and a bottom margin.&lt;/p&gt;

&lt;h2&gt;
  
  
  INLINE
&lt;/h2&gt;

&lt;p&gt;1.It doesn't start on a new line.&lt;br&gt;
2.It only takes up as much width necessary.&lt;br&gt;
3.It doesn't have top and bottom margin.&lt;/p&gt;

&lt;h1&gt;
  
  
  thank you
&lt;/h1&gt;

</description>
      <category>webdev</category>
      <category>beginners</category>
      <category>css</category>
      <category>100daysofcode</category>
    </item>
    <item>
      <title>WORKING WITH TEXT.</title>
      <dc:creator>milky121</dc:creator>
      <pubDate>Sun, 05 Dec 2021 13:12:02 +0000</pubDate>
      <link>https://dev.to/milky121/working-with-text-2f2k</link>
      <guid>https://dev.to/milky121/working-with-text-2f2k</guid>
      <description>&lt;p&gt;In this summary, we will know about the text based elements you are likely to use the most.&lt;/p&gt;

&lt;p&gt;~PARAGRAPH ELEMENT:  &lt;/p&gt;

&lt;p&gt;If you want to create paragraph in HTML, we need to use the paragraph element, which will add a newline after each of our paragraph. A paragraph element is defined by wrapping text content with &lt;/p&gt;
&lt;p&gt; tag.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;                 &amp;lt;html&amp;gt;
                   &amp;lt;head&amp;gt;
                   &amp;lt;/head&amp;gt;
                  &amp;lt;body&amp;gt;
                    &amp;lt;p&amp;gt;juhueiryhuiedjkwmdxLksj&amp;lt;/p&amp;gt;
                    &amp;lt;p&amp;gt;iuyhr8w3yr9ijeqkwmsqo&amp;lt;/p&amp;gt;
                  &amp;lt;/body&amp;gt;
                 &amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;~HEADINGS ELEMENT:&lt;/p&gt;

&lt;p&gt;There are six different levels of heading tag represents that heading's level. h1 is the most important and is larger than the other headings,and h6 is the lowest level and therefore the smallest of the headings.&lt;br&gt;
                           For example, to create an h1 heading, we wrap our heading text in a &lt;/p&gt;
&lt;h1&gt;tag.
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;     &amp;lt;html&amp;gt;
       &amp;lt;head&amp;gt;
        &amp;lt;/head&amp;gt;
         &amp;lt;body&amp;gt;
           &amp;lt;h1&amp;gt;........&amp;lt;/h1&amp;gt;
           &amp;lt;h2&amp;gt;........&amp;lt;/h2&amp;gt;
           &amp;lt;h3&amp;gt;........&amp;lt;/h3&amp;gt;
           &amp;lt;h4&amp;gt;........&amp;lt;/h4&amp;gt;
           &amp;lt;h5&amp;gt;........&amp;lt;/h5&amp;gt;
           &amp;lt;h6&amp;gt;........&amp;lt;/h6&amp;gt;
         &amp;lt;/body&amp;gt;
      &amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;/h1&gt;
&lt;p&gt;~STRONG ELEMENT:&lt;/p&gt;

&lt;p&gt;The &lt;strong&gt; element makes the text bold.It also marks semantically marks text as important.&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;       &amp;lt;html&amp;gt;
         &amp;lt;head&amp;gt;
           &amp;lt;/head&amp;gt;
             &amp;lt;body&amp;gt;
               &amp;lt;strong&amp;gt; this is dev community&amp;lt;/strong&amp;gt;
             &amp;lt;/body&amp;gt;
       &amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;~Em Element:&lt;/p&gt;

&lt;p&gt;This makes text italic. It also semantically place emphasis on the text, which again affects things like screen readers.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;    &amp;lt;html&amp;gt;
      &amp;lt;head&amp;gt;
       &amp;lt;/head&amp;gt;
         &amp;lt;body&amp;gt;
           &amp;lt;em&amp;gt;some emphasized text&amp;lt;/em&amp;gt;
         &amp;lt;/body&amp;gt;
   &amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;~NESTING AND INDENTATION:&lt;/p&gt;

&lt;p&gt;When we indent any elements, that are within other elements known as nesting element.&lt;br&gt;
                  When we nest any elements within other elements, we create a parent and child relationship between them. The nested element are the children and the elements they are nested within is the parent.&lt;/p&gt;

&lt;p&gt;*We use indentation to make the level of nesting clear and readable for ourselves and other developers who will work with our html in the future.&lt;br&gt;
              It is recommended to intent any child elements by two spaces.&lt;/p&gt;

&lt;p&gt;~HTML COMMENTS:&lt;/p&gt;

&lt;p&gt;HTML comments are not visible to the browser; they allow us to comment on our code that so that other developers or our future selves can read them and get some context about something that might not be clear in the code.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;  &amp;lt;html&amp;gt;
   &amp;lt;head&amp;gt;
    &amp;lt;/head&amp;gt;
      &amp;lt;body&amp;gt;
       &amp;lt;h1&amp;gt;View the html to see the hidden comments&amp;lt;/h1&amp;gt;
       &amp;lt;!--I am a html comment --&amp;gt;
       &amp;lt;p&amp;gt;yfyrgjhliuouoiujkljlkjo&amp;lt;/p&amp;gt;
       &amp;lt;!--I am another html comment --&amp;gt;
    &amp;lt;/body&amp;gt;
  &amp;lt;/html


USE THESE HTML ELEMENTS AND CREATE A NEW WEBPAGE.
         THANK YOU......
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>html</category>
      <category>css</category>
      <category>100daysofcode</category>
    </item>
    <item>
      <title>HTML BOILERPLATE.</title>
      <dc:creator>milky121</dc:creator>
      <pubDate>Sat, 04 Dec 2021 15:29:01 +0000</pubDate>
      <link>https://dev.to/milky121/html-boilerplate-4dao</link>
      <guid>https://dev.to/milky121/html-boilerplate-4dao</guid>
      <description>&lt;p&gt;All HTML documents have the same basic structure or boilerplate that needs to be in place before anything useful can be done.&lt;/p&gt;

&lt;p&gt;~CREATING A HTML FILE:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;first of all,create a new folder on your computer "html-boilerplate"&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;2.now, within folder create a new file and named "index.html"&lt;/p&gt;

&lt;p&gt;*THE DOCTYPE:&lt;/p&gt;

&lt;p&gt;Every html page starts with a doctype declaration.The doctype's purpose is to tell the browser what version of html it should use to render the document.&lt;br&gt;
                    The latest verSion HTML5 and the doctype for that version is simply  &amp;lt;!DOCTYPE html&amp;gt;  .&lt;/p&gt;

&lt;p&gt;Now, open the index.html file created and add &amp;lt;!DOCTYPE html&amp;gt; to the very first line.&lt;/p&gt;

&lt;p&gt;~HTML ELEMENTS:&lt;/p&gt;

&lt;p&gt;After studying doctype, we need to provide an  elements. This becomes more important later on when we learn about manipulating HTML with javascript. &lt;br&gt;
             For now, just know that the HTML elements should be induced on every document. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Back in the index.html lets add the  elements by typing out its opening and closing tags line.&lt;/p&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;            &amp;lt;!DOCTYPE html&amp;gt;
            &amp;lt;html&amp;gt;
            &amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;~HEAD ELEMENTS:&lt;/p&gt;

&lt;p&gt;The &lt;/p&gt; elements is where we put important meta-information about our webpages and stuffs required for our webpages to  render correctly in the browser.

&lt;p&gt;NOTE: Anything included within the head elements will not be displayed to the user.&lt;/p&gt;

&lt;p&gt;~TITLE ELEMENTS:&lt;/p&gt;

&lt;p&gt;One elements we should use always include in the head of an html document is the title element.&lt;br&gt;
                         &lt;/p&gt;My FIRST WEBPAGE

&lt;p&gt;~THE CHARSET META ELEMENTS:&lt;/p&gt;

&lt;p&gt;Another important element we should always have in the head element is the meta tag for the CHARSET ENCODING OF WEBPAGE.&lt;br&gt;
                &lt;/p&gt;

&lt;p&gt;*Back in the index.html,let's add a head element with a title and a charset meta element within it.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;                &amp;lt;!DOCTYPE html&amp;gt;
            &amp;lt;html&amp;gt;
               &amp;lt;head&amp;gt;
                 &amp;lt;title&amp;gt;My First Webpage&amp;lt;/title&amp;gt;
                 &amp;lt;meta charset="UTF-8"&amp;gt;
                 &amp;lt;/head&amp;gt;
            &amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;~BODY ELEMENTS: &lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;        It is the final element needed to complete the html boilerplate is the &amp;lt;body&amp;gt; element.This is where all the content that will be displayed to users will go-the text, images, lists, links etc.
           &amp;lt;body&amp;gt;
           &amp;lt;/body&amp;gt;
           &amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;*Back in the index.html file , let's add a heading to the body and save the file.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;                 &amp;lt;!DOCTYPE html&amp;gt;
                 &amp;lt;html&amp;gt;
                   &amp;lt;head&amp;gt;
                     &amp;lt;title&amp;gt;My First Webpage&amp;lt;/title&amp;gt;
                     &amp;lt;meta charset="UTF-8"&amp;gt;
                    &amp;lt;/head&amp;gt;

                  &amp;lt;body&amp;gt; 
                       &amp;lt;h1&amp;gt;HELLO WORLD!&amp;lt;/h1&amp;gt;
                  &amp;lt;/body&amp;gt;
                 &amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;Now, finally save all of this...&lt;/p&gt;

&lt;p&gt;~HOW TO VIEW HTML FILES IN THE BROWSER:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;you can drag and drop the html file from your text editor into the address bar of your favourite browser.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;you can find the html file in your file system and then double click it. This will open up the file in the default browser of your system user.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;you can use the terminal to open the file in your browser.&lt;/p&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;         thank you..........    
&lt;/code&gt;&lt;/pre&gt;
&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>html</category>
      <category>100daysofcode</category>
    </item>
    <item>
      <title>INTRODUCTION TO HTML AND CSS.</title>
      <dc:creator>milky121</dc:creator>
      <pubDate>Thu, 02 Dec 2021 14:25:56 +0000</pubDate>
      <link>https://dev.to/milky121/introduction-to-html-and-css-341b</link>
      <guid>https://dev.to/milky121/introduction-to-html-and-css-341b</guid>
      <description>&lt;p&gt;*HTML and CSS  are two languages that work together to create everything that we see when we look at something on internet.&lt;br&gt;
       HTML is the raw data that a web is built out of. All the text, links, cards, lists and buttons are created in HTML.&lt;/p&gt;

&lt;p&gt;*CSS is used to add styles to those plain elements, give it color, change the font and make it look great.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;                            They are not a programming languages because they are only concerned with presenting information.
       Let's take a simple look of differences b/w HTML,CSS and JAVASCRIPT.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;~HTML(Hypertext Markup Language): 1. a language that determine,how documents and web pages&lt;br&gt;&lt;br&gt;
          are displayed.&lt;br&gt;
       2.controls the layout of the content.&lt;br&gt;
       3.provides structure for web page design.&lt;br&gt;
       4.the fundamental building block of any web page.&lt;/p&gt;

&lt;p&gt;~CSS(cascading style sheet): 1.a popular style sheet language&lt;br&gt;
                               that determines how document &lt;br&gt;
                              created in html is styled.&lt;br&gt;
                            2.it adds color, fonts, style to the&lt;br&gt;
                            webpage.&lt;br&gt;
 ~JAVASCRIPT: 1. allows us change CSS and HTML elements on our &lt;br&gt;
                website.&lt;br&gt;
              2. adds interactivity to a webpage.&lt;br&gt;
              3. handles complex functions and features.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;                                                      thank you...........               
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>html</category>
      <category>css</category>
    </item>
    <item>
      <title>COMMAND LINE BASICS</title>
      <dc:creator>milky121</dc:creator>
      <pubDate>Mon, 29 Nov 2021 13:49:45 +0000</pubDate>
      <link>https://dev.to/milky121/command-line-basics-21nj</link>
      <guid>https://dev.to/milky121/command-line-basics-21nj</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;The black screen or window that appear on our system is the  COMMAND LINE INTERFACE(CLI),where we are able to enter commands that our computer will run for us.&lt;br&gt;
        Working with it is a critical skill for us to learn as a developer.&lt;/p&gt;

&lt;p&gt;_The command line is like our base of operations, from which we can launch other program and interact with them.If you will be entering the same command dozens of time, you'll quickly pick up the commands you needs the most.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;~TEST DRIVE YOUR TERMINAL&lt;/p&gt;

&lt;p&gt;*Open a terminal on your computer linux:open the program menu and search for "TERMINAL"&lt;br&gt;
*you can also open 'TERMINAL'by pressing "CTRL+ALT+T"&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;   BEFORE THIS TAKE A LOOK HERE---
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;$whoami.This is a terminal command because it begins with $.$ is saying"hey!Enter what follows in your terminal.&lt;br&gt;
It means we must exclude $ when entering a command.In the above example, we would only enter "whoami"in our terminal.&lt;br&gt;
Now try it out and make sure your terminal is open, type the command mentioned and press ENTER.&lt;/p&gt;

&lt;p&gt;~WHY COMMAND LINE:&lt;/p&gt;

&lt;p&gt;because the upcoming installations will require you to install many different program using the command line. As part of bigger picture,you may well be using command line on a daily basis as a software developer.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;  Before diving into command line, let's know how to create a file.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;1.Open your terminal and enter 1S, 1S will show you the file and folder.&lt;/p&gt;

&lt;p&gt;2.Create a file called"test.txt"by entering in terminal"touch test.txt".&lt;/p&gt;

&lt;p&gt;3.Now enter 1S once again. You should see "test.txt"listed in the output.&lt;/p&gt;

&lt;p&gt;~NOTABLE POINTS:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;You might have already noticed that copying and pasting inside the command line doesn't work.So when you are inside the command line use "CTRL+SHIFT+C" to copy and "CTRL+SHIFT+V" to paste.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;2.You need to learn about TAB COMPLETION(is a common feature of command line interpreter, in which the program automatically fills in partially typed commands.&lt;br&gt;
                         It allows the user to type the first few characters of a command, program or file name and press completion key i.e tab to fill in the rest of the item.The user then press'return' or 'enter' to run the command or open the file.&lt;br&gt;
            THANK YOU AND HAVE A NICE DAY... &lt;/p&gt;

</description>
      <category>100daysofcode</category>
    </item>
    <item>
      <title>TEXT EDITOR</title>
      <dc:creator>milky121</dc:creator>
      <pubDate>Sun, 28 Nov 2021 10:11:34 +0000</pubDate>
      <link>https://dev.to/milky121/text-editor-1p03</link>
      <guid>https://dev.to/milky121/text-editor-1p03</guid>
      <description>&lt;p&gt;*A TEXT EDITOR is by far the most used developer tool regardless what type of developer you are.A good text editor can help you to write better code with real-time code checking, syntax highlighting and automatic formatting..&lt;/p&gt;

&lt;p&gt;~WHY WE CAN'T USE MICROSOFT WORD?&lt;/p&gt;

&lt;p&gt;Because Microsoft word is a rich text editors and are great for writing a paper,but the features that make them good at creating nicely formatted documents makes them unsuitable for writing the code. A document created with these editors has more than just text embedded in the file.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;                   These files also contain some information to how to display the text on the screen and data on how to display graphics embedded into the document.

   On the other hand plain text editor like VS CODE and SUBLIME don't save any additional information.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;*CODE EDITORS~&lt;/p&gt;

&lt;p&gt;It is a specialized web development tools,highly customized and offer many features that will make our life easier.&lt;br&gt;
              Plugins,syntax highlighting,auto-closing of brackets and braces are a few benefits of using this code editor.There are many text editors to choose,bjut i suggest to start with VS CODE.&lt;br&gt;
                      Let's know a little bit information about a VS CODE editor.&lt;/p&gt;

&lt;p&gt;~VS CODE is a free code editor.It has outstanding add-on support and great cut integration. you can download the .deb file and install it from here &lt;a href="https://code.visualstudio.com/"&gt;https://code.visualstudio.com/&lt;/a&gt;&lt;br&gt;
It works pretty much same on every operating system.&lt;/p&gt;

&lt;p&gt;*Learn the basics of using this text editor by this link &lt;a href="https://code.visualstudio.com/docs/introvideos/basics"&gt;https://code.visualstudio.com/docs/introvideos/basics&lt;/a&gt;&lt;br&gt;
kindly go through the link and watch this out.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;                     THANK YOU AND HAVE A GREAT DAY.......
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>vscode</category>
    </item>
    <item>
      <title>Introduction to web development</title>
      <dc:creator>milky121</dc:creator>
      <pubDate>Sat, 27 Nov 2021 09:30:45 +0000</pubDate>
      <link>https://dev.to/milky121/introduction-to-web-development-2mll</link>
      <guid>https://dev.to/milky121/introduction-to-web-development-2mll</guid>
      <description>&lt;p&gt;It is the work involved in developing the website.Web development is a good profession for you because nowadays you see web developers are in high demand, and have a good life balance,have a comfortable salaries.&lt;/p&gt;

&lt;p&gt;WEB DEVELOPERS build and maintain websites and helps the client to get their product or service onto the web.&lt;br&gt;
The client could be anyone like tech company,an organisation and many more.&lt;/p&gt;

&lt;p&gt;~ The work includes front end, back end or full stack web development.&lt;/p&gt;

&lt;p&gt;~FRONT END: the stuff you see on the website in your browser,including the presentation of content and user interface elements like the navigation bar.It uses HTML,CSS,javasript.&lt;/p&gt;

&lt;p&gt;~BACK END: It refers to the guts of the application which live on the server.It stores and serves program data to ensure that front end has what is needs.&lt;/p&gt;

&lt;p&gt;~FULL STACK DEVELOPERS:It works with both the front and back end of a website or application.They can tackle projects that involve databases,building user-facing websites,or even work with clients during planning phase of projects. &lt;/p&gt;

&lt;p&gt;*TOOLS OF THE TRADE:~&lt;br&gt;
These are some of the basic tools you will use regularly&lt;br&gt;
~comp&lt;br&gt;
~Google&lt;br&gt;
~Text editor&lt;br&gt;
~Command line interface(CLI)&lt;br&gt;
~Stack overflow&lt;br&gt;
~Git&lt;br&gt;
~Git Hub&lt;/p&gt;

&lt;p&gt;*TYPES OF CAREER:&lt;br&gt;
Large tech companies such as google, facebook and amazon if you successfully get into these you would get excellent pay,benefits and opportunities.&lt;br&gt;
Startup are a bit like the wild west but when you become a master, you started enjoying in this.&lt;/p&gt;

&lt;p&gt;As a freelancer, you could command a strong hourly wage and the freedom to schedule and design your own products&lt;/p&gt;

&lt;p&gt;As an consultant for a web consultancy, you would give up some of your freelancing wage potential.&lt;/p&gt;

&lt;p&gt;HOPEFULLY, YOU HAVE GAINED A BETTER IDEA OF WHAT A WEB DEVELOPER ACTUALLY DOES AND WHAT YOUR LIFE MIGHT LOOK LIKE IF YOU DECIDED TO TAKE IT ON AS A CARRIER AND THIS HAS ONLY BEEN A TEASER INTO THE WORLD OF THE WEB DEVELOPMENT. &lt;/p&gt;

</description>
      <category>webdev</category>
    </item>
  </channel>
</rss>
