<?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: Ayushi Das</title>
    <description>The latest articles on DEV Community by Ayushi Das (@ayushi200124).</description>
    <link>https://dev.to/ayushi200124</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%2F714520%2F286ed8be-1160-45e1-9a8f-33674d6685f3.jpg</url>
      <title>DEV Community: Ayushi Das</title>
      <link>https://dev.to/ayushi200124</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ayushi200124"/>
    <language>en</language>
    <item>
      <title>How I learned html</title>
      <dc:creator>Ayushi Das</dc:creator>
      <pubDate>Tue, 08 Mar 2022 13:54:44 +0000</pubDate>
      <link>https://dev.to/ayushi200124/how-i-learned-html-3d5a</link>
      <guid>https://dev.to/ayushi200124/how-i-learned-html-3d5a</guid>
      <description>&lt;p&gt;Here I will be documenting my entire day-1 journey of whatever I did to learn html. This is written by me purely for any future references and also to keep a track of important steps which might help me when I get stuck. This is not a tutorial from my end and I am open to any suggestions from my peers.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Note: This writing might help you only if you are a complete beginner.&lt;/em&gt;&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--By2O5lMt--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://c.tenor.com/y2JXkY1pXkwAAAAC/cat-computer.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--By2O5lMt--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://c.tenor.com/y2JXkY1pXkwAAAAC/cat-computer.gif" alt="gif" width="300" height="300"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Pre-Requisite&lt;/li&gt;
&lt;li&gt;
Phase 0 &lt;/li&gt;
&lt;li&gt;
Phase 1 &lt;/li&gt;
&lt;li&gt;
Phase 2 &lt;/li&gt;
&lt;li&gt;
Phase 3 &lt;/li&gt;
&lt;li&gt;Phase 4&lt;/li&gt;
&lt;li&gt;Phase 5&lt;/li&gt;
&lt;li&gt;
Dumping into GitHub
&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;
  
  
  Pre-Requisite
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--qm4IwceK--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://user-images.githubusercontent.com/79920441/157030008-5439e94b-7451-4e8a-9840-150ca1b31b89.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--qm4IwceK--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://user-images.githubusercontent.com/79920441/157030008-5439e94b-7451-4e8a-9840-150ca1b31b89.jpeg" alt="WhatsApp Image" width="683" height="485"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;We can run html codes from any given text editor. My personal favorite is VS Code. Also whatever we see on the internet today, uses html language to work and hence it is the basic requirement for any tech jobs.&lt;/p&gt;

&lt;p&gt;&lt;a&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;
  
  
  Phase 0
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--kTt-UmlN--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://html-css-js.com/images/og.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--kTt-UmlN--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://html-css-js.com/images/og.jpg" alt="WhatsAppimg" width="700" height="420"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;HTML stand for Hypertext Markup Language. It is used to design the structure and layout of our website, also stands as the backbone of any given website. Example: Our body's skeleton.&lt;/li&gt;
&lt;li&gt;CSS stands for Cascading Style Sheets. It adds styling to the backbone and hence appealing the user experience. Example: Our body's appearance.&lt;/li&gt;
&lt;li&gt;JS or JavaScript is the logic for the page layout. Makes the entire web-page functional and responsive. Example: Our body's brain.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;Alt+arrow key&lt;/code&gt; can move line up and down. Also, create a special root file named &lt;em&gt;index.html&lt;/em&gt;. We can access the boiler plate using &lt;code&gt;!+ emmet abbreviation&lt;/code&gt;. &lt;/li&gt;
&lt;li&gt;
&lt;code&gt;ctrl+/&lt;/code&gt; to comment out lines. &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;
  
  
  Phase 1
&lt;/h2&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;!--- Specifies that it is html5 type document ---&amp;gt;
&amp;lt;html lang="en"&amp;gt;                        &amp;lt;!--- Root of an html page ---&amp;gt;
&amp;lt;head&amp;gt;                                  &amp;lt;!--- Contains meta-data ---&amp;gt;
    &amp;lt;meta charset="UTF-8"&amp;gt;
    &amp;lt;title&amp;gt;Document&amp;lt;/title&amp;gt;             &amp;lt;!--- Title of the document ---&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;                                  &amp;lt;!--- Main body rendered by the browser ---&amp;gt; 
    &amp;lt;h1&amp;gt; This is a heading &amp;lt;/h1&amp;gt;        &amp;lt;!--- The heading tag ---&amp;gt; 
    &amp;lt;p&amp;gt; lorem300 &amp;lt;/p&amp;gt;                   &amp;lt;!--- The paragraph tag, `Alt+Z` for word-wrap ---&amp;gt; 
&amp;lt;/body&amp;gt;                                 &amp;lt;!--- Closing the body tag ---&amp;gt; 
&amp;lt;/html&amp;gt;                                 &amp;lt;!--- End of file ---&amp;gt; 
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;ul&gt;
&lt;li&gt;Tag is a container that has either contents or other tags in it. &lt;/li&gt;
&lt;li&gt;Elements are the ones which has contents, empty elements have neither content nor tags in them. &lt;code&gt;Element= opening tag+ content+ closing tag&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Attributes are the properties of an element, example &lt;code&gt;&amp;lt;a href="https://wikipedia.com/"&amp;gt; WIKI &amp;lt;/a&amp;gt;&lt;/code&gt; has &lt;em&gt;a=anchor tag&lt;/em&gt; and &lt;em&gt;href=attribute&lt;/em&gt;. We can use single/double quotes.&lt;/li&gt;
&lt;li&gt;html tag is the parent tag for head tag and body tag. Head tag and body tag are the child of html tag. head tag and body tag are siblings. &lt;/li&gt;
&lt;li&gt;We can use both .html and .htm extension. Inspect element or view page source can show you the template codes. &lt;/li&gt;
&lt;li&gt;Responsive website means it can fit to any kind of display size. &lt;/li&gt;
&lt;li&gt;html is not case sensitive. We use &lt;code&gt;&amp;lt;!---  ---&amp;gt;&lt;/code&gt; for comments. &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;
  
  
  Phase 2
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Document Object Model (DOM):&lt;/strong&gt;&lt;br&gt;
The Document Object Model is a programming API for HTML and XML documents. It defines the logical structure of documents and the way a document is accessed and manipulated.&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--pe4pCKL0--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://miro.medium.com/max/1348/1%2ACcxghvAHaaaI-tOPkqP-og.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--pe4pCKL0--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://miro.medium.com/max/1348/1%2ACcxghvAHaaaI-tOPkqP-og.png" alt="WhatsApp Img" width="674" height="459"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Headings has 6 levels h1, h2, h3, h4, h5, h6 where h1 to h6 has decreasing size/importance. Helps a lot in SEO hence not use it to increase/decrease size or bold/italics it.&lt;/li&gt;
&lt;li&gt;Some important tags:

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;p&amp;gt;&amp;lt;/p&amp;gt;&lt;/code&gt; is paragraph tag which adds paragraphs. &lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;a&amp;gt;&amp;lt;/a&amp;gt;&lt;/code&gt; is anchor tag to add links. We can specify images in place of alternate texts so that when the user clicks the image it renders to the given link. &lt;code&gt;&amp;lt;a href="/about"&amp;gt; &amp;lt;img src="image.png" width="120"&amp;gt; &amp;lt;/a&amp;gt;&lt;/code&gt; &lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;img src    alt&amp;gt;&amp;lt;/img&amp;gt;&lt;/code&gt; is the image tag to add image. &lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;b&amp;gt;&amp;lt;/b&amp;gt;&lt;/code&gt;, &lt;code&gt;&amp;lt;i&amp;gt;&amp;lt;/i&amp;gt;&lt;/code&gt;,&lt;code&gt;&amp;lt;u&amp;gt;&amp;lt;/u&amp;gt;&lt;/code&gt;, bold, italic and underline tags respectively.
&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;br&amp;gt;&amp;lt;/br&amp;gt;&lt;/code&gt; adds new line.
&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;big&amp;gt;&amp;lt;/big&amp;gt;&lt;/code&gt;, &lt;code&gt;&amp;lt;small&amp;gt;&amp;lt;/small&amp;gt;&lt;/code&gt;, are the used to show big and small text respectively.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;hr&amp;gt;&amp;lt;/hr&amp;gt;&lt;/code&gt; is used for horizontal divider. &lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;sub&amp;gt;&amp;lt;/sub&amp;gt;&lt;/code&gt;, &lt;code&gt;&amp;lt;sup&amp;gt;&amp;lt;/sup&amp;gt;&lt;/code&gt;, are subscript and superscript tags respectively. &lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;pre&amp;gt;&amp;lt;/pre&amp;gt;&lt;/code&gt; is a preserve option used to display texts as it is without ignoring the spaces and tabs. &lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;div&amp;gt;&amp;lt;/div&amp;gt;&lt;/code&gt; is division tag, type of container, which is also a block element(taking up most of the width)&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;span&amp;gt;&amp;lt;/span&amp;gt;&lt;/code&gt; is span tag which is a container and an inline element(takes up only the needed spaces/width)&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Block Elements&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;code&gt;&amp;lt;address&amp;gt;&amp;lt;article&amp;gt;&amp;lt;aside&amp;gt;&amp;lt;blockquote&amp;gt;&amp;lt;canvas&amp;gt;&amp;lt;dd&amp;gt;&amp;lt;div&amp;gt;&amp;lt;dl&amp;gt;&amp;lt;dt&amp;gt;&amp;lt;fieldset&amp;gt;&amp;lt;figcaption&amp;gt;&amp;lt;figure&amp;gt;&amp;lt;footer&amp;gt;&amp;lt;form&amp;gt;&amp;lt;h1&amp;gt;-&amp;lt;h6&amp;gt;&amp;lt;header&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;li&amp;gt;&amp;lt;main&amp;gt;&amp;lt;nav&amp;gt;&amp;lt;noscript&amp;gt;&amp;lt;ol&amp;gt;&amp;lt;p&amp;gt;&amp;lt;pre&amp;gt;&amp;lt;section&amp;gt;&amp;lt;table&amp;gt;&amp;lt;tfoot&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;video&amp;gt;&amp;lt;/video&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Inline Elements&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;code&gt;&amp;lt;a&amp;gt;&amp;lt;abbr&amp;gt;&amp;lt;acronym&amp;gt;&amp;lt;b&amp;gt;&amp;lt;bdo&amp;gt;&amp;lt;big&amp;gt;&amp;lt;br&amp;gt;&amp;lt;button&amp;gt;&amp;lt;cite&amp;gt;&amp;lt;code&amp;gt;&amp;lt;dfn&amp;gt;&amp;lt;em&amp;gt;&amp;lt;i&amp;gt;&amp;lt;img&amp;gt;&amp;lt;input&amp;gt;&amp;lt;kbd&amp;gt;&amp;lt;label&amp;gt;&amp;lt;map&amp;gt;&amp;lt;object&amp;gt;&amp;lt;output&amp;gt;&amp;lt;q&amp;gt;&amp;lt;samp&amp;gt;&amp;lt;script&amp;gt;&amp;lt;select&amp;gt;&amp;lt;small&amp;gt;&amp;lt;span&amp;gt;&amp;lt;strong&amp;gt;&amp;lt;sub&amp;gt;&amp;lt;sup&amp;gt;&amp;lt;textarea&amp;gt;&amp;lt;time&amp;gt;&amp;lt;tt&amp;gt;&amp;lt;var&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Documents usually use Absolute and Relative links. The main difference between absolute and relative paths is that absolute URLs always include the domain name of the site with &lt;a href="http://www"&gt;http://www&lt;/a&gt;. Relative links show the path to the file or refer to the file itself. A relative URL is useful within a site to transfer a user from point to point within the same domain.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;
  
  
  Phase 3
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--IKAPk5FX--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/http://www.calcouk.com/images/typical_page_layout_simple.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--IKAPk5FX--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/http://www.calcouk.com/images/typical_page_layout_simple.jpg" alt="Img" width="609" height="582"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Creating a proper web-page layout, using correct tag in correct place, proper indexing is necessary for search engines and better user experience. We mainly use header, main and footer.&lt;/li&gt;
&lt;li&gt;&lt;code&gt;&amp;lt;header&amp;gt;&amp;lt;/header&amp;gt;&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;main&amp;gt;&amp;lt;/main&amp;gt;&lt;/code&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;section&amp;gt;&amp;lt;/section&amp;gt;&lt;/code&gt; &lt;/li&gt;
&lt;li&gt;&lt;code&gt;&amp;lt;article&amp;gt;&amp;lt;/article&amp;gt;&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;&amp;lt;aside&amp;gt;&amp;lt;/aside&amp;gt;&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;code&gt;&amp;lt;footer&amp;gt;&amp;lt;/footer&amp;gt;&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;
  
  
  Phase 4
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Lists:&lt;/strong&gt; We have html lists to organize our content in a structured manner. there are mainly two types of lists:&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Unordered list&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;       &amp;lt;ul type="circle"&amp;gt;
        &amp;lt;li&amp;gt;Home&amp;lt;/li&amp;gt;
        &amp;lt;li&amp;gt;About&amp;lt;/li&amp;gt;
        &amp;lt;li&amp;gt;Services&amp;lt;/li&amp;gt;
        &amp;lt;li&amp;gt;Contact&amp;lt;/li&amp;gt;
    &amp;lt;/ul&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Ordered list&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;      &amp;lt;ol type="i"&amp;gt;
        &amp;lt;li&amp;gt;Home&amp;lt;/li&amp;gt;
        &amp;lt;li&amp;gt;About&amp;lt;/li&amp;gt;
        &amp;lt;li&amp;gt;Services&amp;lt;/li&amp;gt;
        &amp;lt;li&amp;gt;Contact&amp;lt;/li&amp;gt;
    &amp;lt;/ol&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Forms:&lt;/strong&gt; We use forms to collect input from the user. &lt;code&gt;&amp;lt;form&amp;gt;&amp;lt;/form&amp;gt;&lt;/code&gt;: There are different form elements for different kind of user input

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;input element:&lt;/strong&gt; Can be of text, checkbox, radio, button and submit type. We also have a 'file' type.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;textarea element:&lt;/strong&gt; Defines a multi-line input, columns and row attributes can be used to size the textarea.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;select element:&lt;/strong&gt; Defines a dropdown list.
&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;div&amp;gt;
        &amp;lt;h1&amp;gt;Travel Form for our trip&amp;lt;/h1&amp;gt;
        &amp;lt;form action="form.php"&amp;gt;
          &amp;lt;input type="text" placeholder="Enter Your Name" /&amp;gt;&amp;lt;br /&amp;gt;
          &amp;lt;label for="sectionida"&amp;gt;
            &amp;lt;input
              type="radio"
              value="Section a"
              name="section"
              id="sectionida"
            /&amp;gt;
            Section A
          &amp;lt;/label&amp;gt;
          &amp;lt;label for="sectionidb"&amp;gt;
            &amp;lt;input
              type="radio"
              value="Section b"
              name="section"
              id="sectionidb"
            /&amp;gt;
            Section B
          &amp;lt;/label&amp;gt;
          &amp;lt;label for="sectionidc"&amp;gt;
            &amp;lt;input
              type="radio"
              value="Section c"
              name="section"
              id="sectionidc"
              class="red blue"
            /&amp;gt;
            Section C &amp;lt;/label
          &amp;gt;&amp;lt;br /&amp;gt;
          &amp;lt;input type="checkbox" id="foodcanteen" class="red" name="canteen" /&amp;gt;
          &amp;lt;label for="foodcanteen"&amp;gt;Want Food Canteen card&amp;lt;/label&amp;gt;&amp;lt;br /&amp;gt;
          &amp;lt;!-- https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input --&amp;gt;
          &amp;lt;textarea
            name="explain"
            id="explain"
            cols="30"
            rows="10"
            placeholder="Explain why you want to join "
          &amp;gt;&amp;lt;/textarea&amp;gt;
          &amp;lt;select name="car" id="car"&amp;gt;
            &amp;lt;option value="no-car"&amp;gt;Select your car&amp;lt;/option&amp;gt;
            &amp;lt;option value="onmi"&amp;gt;Omni&amp;lt;/option&amp;gt;
            &amp;lt;option value="omni2"&amp;gt;Omni2&amp;lt;/option&amp;gt;
            &amp;lt;option value="dzire"&amp;gt;Dzire&amp;lt;/option&amp;gt;
            &amp;lt;option value="i10"&amp;gt;i10&amp;lt;/option&amp;gt;
            &amp;lt;option value="i20"&amp;gt;i20&amp;lt;/option&amp;gt;
          &amp;lt;/select&amp;gt;
        &amp;lt;/form&amp;gt;
      &amp;lt;/div&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Tables:&lt;/strong&gt; We use tables to display tabular data. 

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;table&amp;gt;&lt;/code&gt;        –  this tag is used to define Tables.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;tr&amp;gt;&lt;/code&gt;           –  table row.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;td&amp;gt;&lt;/code&gt;           –  table data cells.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;th&amp;gt;&lt;/code&gt;           –  for table heading which is bold and center.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;thead&amp;gt;&amp;lt;/thead&amp;gt;&lt;/code&gt;-  used to wrap table head.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;&amp;lt;tbody&amp;gt;&amp;lt;/tbody&amp;gt;&lt;/code&gt;-  used to wrap table body.&lt;/li&gt;
&lt;li&gt;colspan attribute-  wraps multiple columns.
&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;div&amp;gt;
        &amp;lt;table&amp;gt;
            &amp;lt;caption&amp;gt;Max Scores by different players in FauG&amp;lt;/caption&amp;gt;
            &amp;lt;thead&amp;gt;
                &amp;lt;tr&amp;gt;
                    &amp;lt;th&amp;gt;S.No&amp;lt;/th&amp;gt;
                    &amp;lt;!-- &amp;lt;th&amp;gt;Player Name&amp;lt;/th&amp;gt; --&amp;gt;
                    &amp;lt;th colspan="3"&amp;gt;Max Score&amp;lt;/th&amp;gt;
                    &amp;lt;!-- &amp;lt;th&amp;gt;Game&amp;lt;/th&amp;gt; --&amp;gt;
                &amp;lt;/tr&amp;gt;
                &amp;lt;tr&amp;gt;
                    &amp;lt;td&amp;gt;1&amp;lt;/td&amp;gt;
                    &amp;lt;td&amp;gt;Sachin&amp;lt;/td&amp;gt;
                    &amp;lt;td&amp;gt;123&amp;lt;/td&amp;gt;
                    &amp;lt;td&amp;gt;FauG&amp;lt;/td&amp;gt;
                &amp;lt;/tr&amp;gt;
            &amp;lt;/thead&amp;gt;
            &amp;lt;tbody&amp;gt;
                &amp;lt;tr&amp;gt;
                    &amp;lt;td&amp;gt;2&amp;lt;/td&amp;gt;
                    &amp;lt;td&amp;gt;Rahul&amp;lt;/td&amp;gt;
                    &amp;lt;td&amp;gt;123&amp;lt;/td&amp;gt;
                    &amp;lt;td&amp;gt;PubG&amp;lt;/td&amp;gt;
                &amp;lt;/tr&amp;gt;
            &amp;lt;/tbody&amp;gt;
        &amp;lt;/table&amp;gt;
    &amp;lt;/div&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--ldqB6AHG--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://user-images.githubusercontent.com/79920441/157071123-279bbeaa-d007-4d49-9079-2145a59ac75b.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ldqB6AHG--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://user-images.githubusercontent.com/79920441/157071123-279bbeaa-d007-4d49-9079-2145a59ac75b.jpeg" alt="WhatsApp Image 2022-03-07 at 9 32 35 PM" width="262" height="158"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Videos:&lt;/strong&gt; &lt;code&gt;&amp;lt;video&amp;gt;&amp;lt;/video&amp;gt;&lt;/code&gt; tag is used to work with videos. We can use it's attributes to adjust width(height adjusts automatically if not specified) and also to auto-play and loop the video.
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;div&amp;gt;
   &amp;lt;iframe width="560" height="315" src="https://www.youtube.com/embed/9-GSIN8s5Eo" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;br&amp;gt;
&amp;lt;/div&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;The codes after execution some what looks like this (it is just a sample output):
&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Thl7TD0w--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://user-images.githubusercontent.com/79920441/157079047-8c93b341-f129-4574-88d3-1be8ae587935.jpeg" alt="WhatsApp Image 2022-03-07 at 10 16 42 PM" width="520" height="672"&gt;
&lt;/li&gt;
&lt;li&gt;The directory structure of the folder should be like:
&lt;img alt="dir" src="https://res.cloudinary.com/practicaldev/image/fetch/s--5mvEpeqU--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://user-images.githubusercontent.com/79920441/157043213-a6eead99-c373-4caa-9e6a-2174983c1abc.png" width="855" height="725"&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Phase 5
&lt;/h2&gt;

&lt;p&gt;Search Engine Optimization is also as important as the code itself. We will first focus only on html standpoint of SEO and not the keyword building and content optimizing aspect of SEO. There are mainly two types of SEO:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;On page SEO- Done by html developers&lt;/li&gt;
&lt;li&gt;Off page SEO&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Developers can implement SEO using the following techniques:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;head&amp;gt;
    &amp;lt;meta charset="UTF-8"&amp;gt;
    &amp;lt;meta http-equiv="X-UA-Compatible" content="IE=edge"&amp;gt;
    &amp;lt;meta name="viewport" content="width=device-width, initial-scale=1.0"&amp;gt;
    &amp;lt;meta name="description" content="Seo is like this is a nice article on seo"&amp;gt;
    &amp;lt;meta name="keywords" content="seo, search, seo 2021"&amp;gt;
    &amp;lt;link rel="shortcut icon" href="favicon.ico" type="image/x-icon"&amp;gt;
    &amp;lt;title&amp;gt;SEO in 2022: A beginners guide&amp;lt;/title&amp;gt;
&amp;lt;/head&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;Set the title crisp, nice and to the point.&lt;/li&gt;
&lt;li&gt;Set the meta-data description. &lt;code&gt;&amp;lt;meta name="description" content="........."&amp;gt;&amp;lt;/meta&amp;gt;&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Set a nice URL slug.&lt;/li&gt;
&lt;li&gt;Set the meta keywords tag.&lt;/li&gt;
&lt;li&gt;Set the meta anchor tag &lt;code&gt;&amp;lt;meta name="author" content="Ayushi"&amp;gt;&amp;lt;/meta&amp;gt;&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Set a favicon.&lt;/li&gt;
&lt;li&gt;Compress images and other resources.&lt;/li&gt;
&lt;li&gt;Remove unused html/css/js files and compress them.&lt;/li&gt;
&lt;li&gt;Add alt texts to the embed images/videos/other such contents.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Dumping codes into GitHub
&lt;/h2&gt;

&lt;p&gt;I always prefer to keep an online reference, maybe in form of a blog or in GitHub. To continue doing the same with GitHub we should have git in our local system and a GitHub account. Follow the steps:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;git init&lt;/code&gt; to initialize the working folder.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;git add&lt;/code&gt; to add all the files into the staging area.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;git diff&lt;/code&gt; to check the modified files.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;git commit -m "message...."&lt;/code&gt; to commit the changes with appropriate messages.&lt;/li&gt;
&lt;li&gt;Now we go and create a remote repository from our GitHub account or GitHub desktop version.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;git remote add &amp;lt;repository name&amp;gt; &amp;lt;repository url&amp;gt;&lt;/code&gt; to add files in our remote repository.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;git push &amp;lt;repo name&amp;gt; master&lt;/code&gt; to push all the codes into the remote repository.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://github.com/ayushi200124/my-html-journey"&gt;For Future Reference.&lt;/a&gt;&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>html</category>
    </item>
    <item>
      <title>Spreadsheet Basics</title>
      <dc:creator>Ayushi Das</dc:creator>
      <pubDate>Wed, 19 Jan 2022 13:49:05 +0000</pubDate>
      <link>https://dev.to/ayushi200124/spreadsheet-basics-42mh</link>
      <guid>https://dev.to/ayushi200124/spreadsheet-basics-42mh</guid>
      <description>&lt;p&gt;Below, you will find a list that covers two types of spreadsheet programs: Microsoft Excel and Google Sheets. The list includes quick-start guides, tutorials, and more. The examples in this course use Google Sheets, but you can follow along using Excel or any other spreadsheet application. The user interface might be a little different, but it should look and work similarly. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--jsEK7MWW--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/lfadrxnqbokojf3vh3pt.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--jsEK7MWW--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/lfadrxnqbokojf3vh3pt.gif" alt="Image gif" width="498" height="373"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;Microsoft Excel&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://support.microsoft.com/en-us/office/office-quick-starts-25f909da-3e76-443d-94f4-6cdf7dedc51e#ID0EAADAAA=At_work_or_school"&gt;Office Quick Starts&lt;/a&gt;: Scroll down to the Downloadable guides section to d​ownload the Excel Quick Start Guide: This PDF guide begins with a labeled map of Excel that can guide you through the basic tasks you can accomplish in Excel. For tips on starting and opening Excel, this &lt;a href="https://support.microsoft.com/en-us/office/create-a-new-workbook-ae99f19b-cecb-4aa0-92c8-7126d6212a83?wt.mc_id=otc_excel"&gt;Microsoft Support page&lt;/a&gt; will show you how to begin a new workbook.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://support.microsoft.com/en-us/office/excel-for-windows-training-9bc05390-e94c-46af-a5b3-d7c22f6990bb?wt.mc_id=otc_home"&gt;Excel video training&lt;/a&gt;: This is a collection of step-by-step videos to use all sorts of Excel features, including adding and working within rows, columns, and cells; formatting; using formulas and functions; and adding charts and pivot tables. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://support.microsoft.com/en-us/office/sort-data-in-a-range-or-table-62d0b95d-2a90-4610-a6ae-2e545c4a4654"&gt;Sort data in a range or table&lt;/a&gt;: This page guides you through all of the steps you will need to sort data by number, text, and color. You’ll also have the option to sort by custom list so that you can customize exactly what you want to sort.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://support.microsoft.com/en-us/office/filter-data-in-a-range-or-table-01832226-31b5-4568-8806-38c37dcc180e"&gt;Filter data in a range or table&lt;/a&gt;: This article has step-by-step instructions on how to filter an Excel spreadsheet to show only the data you want to see. You can also use built-in comparison operators, such as “greater than” and “top 10” to reveal only the most relevant data.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://support.microsoft.com/en-us/office/quick-start-format-a-worksheet-d70f75a2-23e6-4c92-83d6-2f219e4ad42e"&gt;Format a worksheet&lt;/a&gt;: The guide will help you select and format your Excel spreadsheet, then change the borders, shading, colors, and text. This can help improve your spreadsheet’s readability.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;Pro tip&lt;/em&gt;&lt;/strong&gt; : If you’re searching for information about using customizable options, check out Microsoft’s &lt;a href="https://support.microsoft.com/en-us/office/guidelines-for-organizing-and-formatting-data-on-a-worksheet-90895cad-6c85-4e02-90d3-8798660166e3"&gt;Guidelines for organizing and formatting data on a worksheet&lt;/a&gt;. This article provides clear methods for creating easy-to-read spreadsheets.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;Google Sheets&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://support.google.com/a/users/answer/9300022"&gt;Google Sheets cheat sheet&lt;/a&gt;: The cheat sheet puts all the basics of Sheets on a single page for easy reference. Here, you can learn about customizing your spreadsheet and the data inside; working with rows, columns, and cells; sharing your spreadsheet with others; creating different versions and copies of a spreadsheet; and more.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://support.google.com/a/users/answer/9300311?hl=en&amp;amp;ref_topic=9296423"&gt;Get started with Sheets&lt;/a&gt;: Create and import files: This guide is a step-by-step guide for working with Sheets. You start by learning how to open a spreadsheet, then move on to adding data.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://support.google.com/docs/answer/3540681?co=GENIE.Platform%3DDesktop&amp;amp;hl=en"&gt;Sort and filter your data&lt;/a&gt;: This resource can help you organize data in Sheets. Use this guide to sort part or all of a spreadsheet. You can sort by text, number, and color. Then, learn how to create filters to show only certain data while hiding the rest. Finally, the article includes information on creating, saving, and removing a filter view. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://support.google.com/docs/answer/46973?co=GENIE.Platform%3DDesktop&amp;amp;hl=en&amp;amp;oco=0"&gt;Edit and format a spreadsheet&lt;/a&gt;: This will help you make easy-to-read spreadsheets. You will learn how to assign a color, customize borders around cells, and change the appearance of text. If you’d like to give your spreadsheet a theme, you can scroll to the bottom of the page and find how to apply it to parts of your spreadsheet.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--gO8GhzG5--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://d3c33hcgiwev3.cloudfront.net/imageAssetProxy.v1/7wjTPsI1SZeI0z7CNWmX0Q_e2d11783146b48de9650728d4373b36f_Screen-Shot-2021-03-04-at-4.47.48-PM.png%3Fexpiry%3D1642723200000%26hmac%3DLLYaOfkGsAungs4hCDfm2eE6SwMrH-WPPQ62y_16eOM" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--gO8GhzG5--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://d3c33hcgiwev3.cloudfront.net/imageAssetProxy.v1/7wjTPsI1SZeI0z7CNWmX0Q_e2d11783146b48de9650728d4373b36f_Screen-Shot-2021-03-04-at-4.47.48-PM.png%3Fexpiry%3D1642723200000%26hmac%3DLLYaOfkGsAungs4hCDfm2eE6SwMrH-WPPQ62y_16eOM" alt="image" width="880" height="237"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Tip: Microsoft Excel and Google Sheets are very similar in terms of calculations, formulas, functions, and many other features. But there are some differences, which can make it tricky to switch from one to the other. If you are moving between Excel and Google Sheets, find a quick list of the differences between the two kinds of spreadsheet applications in &lt;a href="https://support.google.com/a/users/answer/9331278?hl=en"&gt;Overview: Differences between Sheets and Excel.&lt;/a&gt;&lt;/p&gt;

</description>
      <category>analytics</category>
      <category>database</category>
      <category>beginners</category>
      <category>productivity</category>
    </item>
    <item>
      <title>Data Analytics: Case Study 101</title>
      <dc:creator>Ayushi Das</dc:creator>
      <pubDate>Sat, 15 Jan 2022 03:55:58 +0000</pubDate>
      <link>https://dev.to/ayushi200124/data-analytics-case-study-101-1dl6</link>
      <guid>https://dev.to/ayushi200124/data-analytics-case-study-101-1dl6</guid>
      <description>&lt;p&gt;If you are somebody who has just started off with Data Analytics and want to get a brief idea about the roadmap of how to plan a project, this article is for you. It has just the "enough" basics to get you started. &lt;/p&gt;

&lt;p&gt;Any time you observe and evaluate something in the world, you’re collecting and analyzing data. Your analysis helps you find easier ways of doing things, identify patterns to save you time, and discover surprising new perspectives that can completely change the way you experience things.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--nywMuMEC--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/znasu1fsxx6j1v30hxdm.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--nywMuMEC--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/znasu1fsxx6j1v30hxdm.gif" alt="Image gif" width="800" height="600"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Here is a real-life example of how one group of data analysts used the six steps of the data analysis process to improve their workplace and its business processes. Their story involves something called people analytics — also known as human resources analytics or workforce analytics. People analytics is the practice of collecting and analyzing data on the people who make up a company’s workforce in order to gain insights to improve how the company operates.&lt;/p&gt;

&lt;p&gt;Being a people analyst involves using data analysis to gain insights about employees and how they experience their work lives. The insights are used to define and create a more productive and empowering workplace. This can unlock employee potential, motivate people to perform at their best, and ensure a fair and inclusive company culture. &lt;/p&gt;

&lt;p&gt;The six steps of the data analysis process that you have been learning in this program are: &lt;strong&gt;ask, prepare, process, analyze, share, and act&lt;/strong&gt; . These six steps apply to any data analysis. Continue reading to learn how a team of people analysts used these six steps to answer a business question. &lt;/p&gt;

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

&lt;p&gt;An organization was experiencing a high turnover rate among new hires. Many employees left the company before the end of their first year on the job. The analysts used the data analysis process to answer the following question: how can the organization improve the retention rate for new employees? &lt;/p&gt;

&lt;p&gt;Here is a break down of what this team did, step by step. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--7cSLn2BO--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/qbrku3e0gd8x9dj7ax0v.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--7cSLn2BO--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/qbrku3e0gd8x9dj7ax0v.jpg" alt="Image 101" width="859" height="186"&gt;&lt;/a&gt;&lt;br&gt;
First up, the analysts needed to define what the project would look like and what would qualify as a successful result. So, to determine these things, they asked effective questions and collaborated with leaders and managers who were interested in the outcome of their people analysis. These were the kinds of questions they asked:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;What do you think new employees need to learn to be successful in their first year on the job? &lt;/li&gt;
&lt;li&gt;Have you gathered data from new employees before? If so, may we have access to the historical data?&lt;/li&gt;
&lt;li&gt;Do you believe managers with higher retention rates offer new employees something extra or unique?&lt;/li&gt;
&lt;li&gt;What do you suspect is a leading cause of dissatisfaction among new employees?&lt;/li&gt;
&lt;li&gt;By what percentage would you like employee retention to increase in the next fiscal year?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--5cuD4zLK--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/kfwbdywucw86x7lpd8j8.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--5cuD4zLK--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/kfwbdywucw86x7lpd8j8.jpg" alt="Image 102" width="804" height="188"&gt;&lt;/a&gt;&lt;br&gt;
It all started with solid preparation. The group built a timeline of three months and decided how they wanted to relay their progress to interested parties. Also during this step, the analysts identified what data they needed to achieve the successful result they identified in the previous step - in this case, the analysts chose to gather the data from an online survey of new employees. These were the things they did to prepare:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;They developed specific questions to ask about employee satisfaction with different business processes, such as hiring and onboarding, and their overall compensation. &lt;/li&gt;
&lt;li&gt;They established rules for who would have access to the data collected - in this case, anyone outside the group wouldn't have access to the raw data, but could view summarized or aggregated data. For example, an individual's compensation wouldn't be available, but salary ranges for groups of individuals would be viewable. &lt;/li&gt;
&lt;li&gt;They finalized what specific information would be gathered, and how best to present the data visually. The analysts brainstormed possible project- and data-related issues and how to avoid them.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--T_EJN1Xf--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/519472vh5rz4vclw93c1.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--T_EJN1Xf--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/519472vh5rz4vclw93c1.jpg" alt="Image 103" width="816" height="195"&gt;&lt;/a&gt; &lt;br&gt;
The group sent the survey out. Great analysts know how to respect both their data and the people who provide it. Since employees provided the data, it was important to make sure all employees gave their consent to participate. The data analysts also made sure employees understood how their data would be collected, stored, managed, and protected. Collecting and using data ethically is one of the responsibilities of data analysts. In order to maintain confidentiality and protect and store the data effectively, these were the steps they took:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;They restricted access to the data to a limited number of analysts. &lt;/li&gt;
&lt;li&gt;They cleaned the data to make sure it was complete, correct, and relevant. Certain data was aggregated and summarized without revealing individual responses. &lt;/li&gt;
&lt;li&gt;They uploaded raw data to an internal data warehouse for an additional layer of security. &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--fddjTJ3Y--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/g22dmedgxeps11dm23io.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--fddjTJ3Y--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/g22dmedgxeps11dm23io.jpg" alt="Image 104" width="802" height="194"&gt;&lt;/a&gt;&lt;br&gt;
Then, the analysts did what they do best: analyze! From the completed surveys, the data analysts discovered that an employee’s experience with certain processes was a key indicator of overall job satisfaction. These were their findings:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Employees who experienced a long and complicated hiring process were most likely to leave the company. &lt;/li&gt;
&lt;li&gt;Employees who experienced an efficient and transparent evaluation and feedback process were most likely to remain with the company. &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The group knew it was important to document exactly what they found in the analysis, no matter what the results. To do otherwise would diminish trust in the survey process and reduce their ability to collect truthful data from employees in the future. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--iZjtVkm_--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/bli05c8m0k6qr2m1cwvk.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--iZjtVkm_--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/bli05c8m0k6qr2m1cwvk.jpg" alt="Image 105" width="797" height="192"&gt;&lt;/a&gt;&lt;br&gt;
Just as they made sure the data was carefully protected, the analysts were also careful sharing the report. This is how they shared their findings:&lt;/p&gt;

&lt;p&gt;They shared the report with managers who met or exceeded the minimum number of direct reports with submitted responses to the survey. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;They presented the results to the managers to make sure they had the full picture. &lt;/li&gt;
&lt;li&gt;They asked the managers to personally deliver the results to their teams. &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This process gave managers an opportunity to communicate the results with the right context. As a result, they could have productive team conversations about next steps to improve employee engagement. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--nvzUOQ5p--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/1xo9odb71ky9o6bttx7d.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--nvzUOQ5p--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/1xo9odb71ky9o6bttx7d.jpg" alt="Image 106" width="813" height="197"&gt;&lt;/a&gt;&lt;br&gt;
The last stage of the process for the team of analysts was to work with leaders within their company and decide how best to implement changes and take actions based on the findings. These were their recommendations: &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Standardize the hiring and evaluation process for employees based on the most efficient and transparent practices. &lt;/li&gt;
&lt;li&gt;Conduct the same survey annually and compare results with those from the previous year. &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A year later, the same survey was distributed to employees. Analysts anticipated that a comparison between the two sets of results would indicate that the action plan worked. Turns out, the changes improved the retention rate for new employees and the actions taken by leaders were successful! &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Is people analytics right for you?&lt;/strong&gt;&lt;br&gt;
One of the many things that makes data analytics so exciting is that the problems are always different, the solutions need creativity, and the impact on others can be great — even life-changing or life-saving. As a data analyst, you can be part of these efforts. Maybe you’re even inspired to learn more about the field of people analytics. If so, consider learning more about this field and adding that research to your data analytics journal. You never know: One day soon, you could be helping a company create an amazing work environment for you and your colleagues!&lt;/p&gt;

&lt;p&gt;Source: &lt;a href="https://www.coursera.org/learn/foundations-data/home/welcome"&gt;Data, Data, Everywhere... &lt;/a&gt;&lt;/p&gt;

</description>
      <category>datascience</category>
      <category>database</category>
      <category>tutorial</category>
      <category>computerscience</category>
    </item>
    <item>
      <title>5 YouTube channel to learn Data Science!</title>
      <dc:creator>Ayushi Das</dc:creator>
      <pubDate>Fri, 31 Dec 2021 06:01:41 +0000</pubDate>
      <link>https://dev.to/ayushi200124/5-youtube-channel-to-learn-data-science-1b6p</link>
      <guid>https://dev.to/ayushi200124/5-youtube-channel-to-learn-data-science-1b6p</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;“Data is the new science. Big Data holds the answers.”  -By Pat Gelsinger&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Learning Data Science might seem overwhelming, especially with the blooming trend over the last decade. Beginners are encountering a tough time finding the correct material to commence with the learning journey. In the era of online self-paced courses YouTube has proved to be the most beginner-friendly platform. It is a kick start whenever there is something to learn from basics to advanced level. A lot can be learned about data science by following YouTube channels and here I have listed down the YouTube channels on data science that I follow.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. Sentdex
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=OGxgnH8y2NM" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.youtube.com%2Fvi%2FOGxgnH8y2NM%2F0.jpg" alt="IMAGE ALT TEXT"&gt;&lt;/a&gt;&lt;em&gt;Click the image to watch in YouTube&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Sentdex offers some of the best programming language material for Python. The creator has developed tutorials for machine learning, deep analysis, facial recognition, and improving education for aspiring data scientists. He covers various Python topics such as web development, data analysis, robotics, game production, ML, and finance.&lt;br&gt;
&lt;strong&gt;Popular Playlist&lt;/strong&gt;&lt;br&gt;
1.&lt;a href="https://youtube.com/playlist?list=PLQVvvaa0QuDeAams7fkdcwOGBpGdHpXln" rel="noopener noreferrer"&gt;Learning To Program With Python3&lt;/a&gt;&lt;br&gt;
2.&lt;a href="https://youtube.com/playlist?list=PLQVvvaa0QuDcOdF96TBtRtuQksErCEBYZ" rel="noopener noreferrer"&gt;Python Programming For Finance&lt;/a&gt;&lt;br&gt;
3.&lt;a href="https://youtube.com/playlist?list=PLQVvvaa0QuDdLkP8MrOXLe_rKuf6r80KO" rel="noopener noreferrer"&gt;PyGame With Python3 Game Development&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Subscribers: 1.09M subscribers &lt;br&gt;
Views: 99,255,230 views&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  2.Corey Schafer
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=ZDa-Z5JzLYM" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.youtube.com%2Fvi%2FZDa-Z5JzLYM%2F0.jpg" alt="IMAGE ALT TEXT"&gt;&lt;/a&gt;&lt;em&gt;Click the image to watch in YouTube&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Corey Schafer revolves around a wide range of topics, which include the basics of programming, Linux tutorials, SQL tutorials, Django, etc. For Data Science, in particular, the channel provides video playlists on topics like Pandas, Matplotlib, and a series of videos on getting started with Python.&lt;br&gt;
&lt;strong&gt;Popular Playlist&lt;/strong&gt;&lt;br&gt;
1.&lt;a href="https://youtube.com/playlist?list=PL-osiE80TeTt2d9bfVyTiXJA-UTHn6WwU" rel="noopener noreferrer"&gt;Python Tutorials&lt;/a&gt;&lt;br&gt;
2.&lt;a href="https://youtube.com/playlist?list=PL-osiE80TeTtoQCKZ03TU5fNfx2UY6U4p" rel="noopener noreferrer"&gt;Django Tutorials&lt;/a&gt;&lt;br&gt;
3.&lt;a href="https://youtube.com/playlist?list=PL-osiE80TeTs4UjLw5MM6OjgkjFeUxCYH" rel="noopener noreferrer"&gt;Flask Tutorials&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Subscribers: 871k subscribers &lt;br&gt;
 Views: 66,712,948 views&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  3.Krish Naik
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=k2P_pHQDlp0" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.youtube.com%2Fvi%2Fk2P_pHQDlp0%2F0.jpg" alt="IMAGE ALT TEXT"&gt;&lt;/a&gt;&lt;em&gt;Click the image to watch in YouTube&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Krish Naik deals with various topics which are related to data science as well as machine learning and deep learning. The channel provides a playlist section that is mainly for beginners in the field of data science. The entire playlist is centered around the programming language Python. It serves a number of playlists focusing on several aspects and subjects, such as managing interview questions, Augmented Reality, Deep Learning, Statistics, Natural Language Processing, etc.&lt;br&gt;
&lt;strong&gt;Popular Playlist&lt;/strong&gt;&lt;br&gt;
1.&lt;a href="https://youtube.com/playlist?list=PLZoTAELRMXVNQszMgcC_0VwIZ8ATa-lPy" rel="noopener noreferrer"&gt;Best Data Science Interview Questions&lt;/a&gt;&lt;br&gt;
2.&lt;a href="https://youtube.com/playlist?list=PLZoTAELRMXVM0zN0cgJrfT6TK2ypCpQdY" rel="noopener noreferrer"&gt;Machine Learning Interview Questions&lt;/a&gt;&lt;br&gt;
3.&lt;a href="https://youtube.com/playlist?list=PLZoTAELRMXVOPCn3cd7Czzytk9N3CbyIl" rel="noopener noreferrer"&gt;Live Virtual Mock Interview Sessions&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Subscribers:493K subscribers &lt;br&gt;
 Views:39,781,277 views&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  4.Code basics
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=ZhnJ1bkIWWk" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.youtube.com%2Fvi%2FZhnJ1bkIWWk%2F0.jpg" alt="IMAGE ALT TEXT"&gt;&lt;/a&gt;&lt;em&gt;Click the image to watch in YouTube&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Code basics has a well structured study materials and one of the underrated channel according to me. The creator has curated the contents in such a way that learners can grasp the topics, beginner or advance, in the most easy way within the least time span possible. The important playlists include End-to-End projects, Mathematics and Statistics, Machine Learning and Data Analytics. &lt;br&gt;
&lt;strong&gt;Popular Playlist&lt;/strong&gt;&lt;br&gt;
1.&lt;a href="https://youtube.com/playlist?list=PLeo1K3hjS3uuKaU2nBDwr6zrSOTzNCs0l" rel="noopener noreferrer"&gt;Mathematics, Statistics For Data Science And Machine Learning&lt;/a&gt;&lt;br&gt;
2.&lt;a href="https://youtube.com/playlist?list=PLeo1K3hjS3uvxzKyaUqdkYgUKU0Nnffso" rel="noopener noreferrer"&gt;Data Science Career Guidance&lt;/a&gt;&lt;br&gt;
3.&lt;a href="https://youtube.com/playlist?list=PLeo1K3hjS3uuRh6Mvo3GJrXs87CEMGPWn" rel="noopener noreferrer"&gt;Data Science, Programming FAQs&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Subscribers:485K subscribers &lt;br&gt;
 Views:29,702,314 views&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  5.Ken Jee
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=4OZip0cgOho" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.youtube.com%2Fvi%2F4OZip0cgOho%2F0.jpg" alt="IMAGE ALT TEXT"&gt;&lt;/a&gt;&lt;em&gt;Click the image to watch in YouTube&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Ken Jee shares some amazing beginner friendly projects and the creator also dives the viewers across his own roadmap of learning Data Science. It is mainly concentrated on how to build up a good resume, project ideas, interview strategies and podcasts. One of the notable playlist also includes Learning, Productivity and Motivation. &lt;br&gt;
&lt;strong&gt;Popular Playlist&lt;/strong&gt;&lt;br&gt;
1.&lt;a href="https://youtube.com/playlist?list=PL2zq7klxX5ATrRqOBizbHUouwRzMsrP7x" rel="noopener noreferrer"&gt;Learning, Productivity And Motivation&lt;/a&gt;&lt;br&gt;
2.&lt;a href="https://youtube.com/playlist?list=PL2zq7klxX5ARdms3L99sE8DTEsJ4_jCHP" rel="noopener noreferrer"&gt;Data Science Jobs&lt;/a&gt;&lt;br&gt;
3.&lt;a href="https://youtube.com/playlist?list=PL2zq7klxX5ATOxhcLQcfxgv-cMWAjjdXS" rel="noopener noreferrer"&gt;Data Science&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Subscribers:177K subscribers &lt;br&gt;
 Views:5,365,974 views&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>datascience</category>
      <category>tutorial</category>
      <category>beginners</category>
      <category>career</category>
    </item>
  </channel>
</rss>
