<?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: Sathish Kumar</title>
    <description>The latest articles on DEV Community by Sathish Kumar (@sathish_kumar_967).</description>
    <link>https://dev.to/sathish_kumar_967</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4127185%2Ff2b5074a-d75b-4ecc-b681-4b213187de46.jpeg</url>
      <title>DEV Community: Sathish Kumar</title>
      <link>https://dev.to/sathish_kumar_967</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sathish_kumar_967"/>
    <language>en</language>
    <item>
      <title>Daily Web Development Learning:CSS Display &amp; Navigation Bar Basic!</title>
      <dc:creator>Sathish Kumar</dc:creator>
      <pubDate>Thu, 17 Sep 2026 11:49:45 +0000</pubDate>
      <link>https://dev.to/sathish_kumar_967/daily-web-development-learningcss-display-navigation-bar-basic-1ib1</link>
      <guid>https://dev.to/sathish_kumar_967/daily-web-development-learningcss-display-navigation-bar-basic-1ib1</guid>
      <description>&lt;p&gt;Today, I practiced essential CSS properties used to layout and style navigation bars. Here is a quick breakdown of what I covered:&lt;/p&gt;

&lt;p&gt;​display: flex; – Converts block-level list items (like Home, About, Contact, Services) into inline elements so they sit neatly side-by-side.&lt;/p&gt;

&lt;p&gt;​list-style-type: none; – Removes the default bullet points from list items.&lt;/p&gt;

&lt;p&gt;​gap: 20px; – Adds clean, uniform spacing between navigation links.&lt;/p&gt;

&lt;p&gt;​text-decoration: none; – Removes default underlines from &lt;a&gt; tags for a cleaner look.&lt;/a&gt;&lt;/p&gt;
&lt;a&gt;

&lt;p&gt;​display: none; vs display: block; – Controls element visibility (essential for responsive mobile menus/hamburgers).&lt;/p&gt;

&lt;p&gt;​Hover Effects (:hover) – Adds dynamic color changes when a user hovers over interactive elements.&lt;/p&gt;

&lt;/a&gt;&lt;p&gt;&lt;a&gt;​Step by step, building a solid frontend foundation! &lt;br&gt;
&lt;/a&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fa57zizz8811fzv7bgo9s.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fa57zizz8811fzv7bgo9s.jpeg" alt=" " width="688" height="1529"&gt;&lt;/a&gt;&lt;/p&gt;



</description>
      <category>css</category>
      <category>html</category>
      <category>frontend</category>
      <category>webdev</category>
    </item>
    <item>
      <title>1. HTML Table:</title>
      <dc:creator>Sathish Kumar</dc:creator>
      <pubDate>Wed, 16 Sep 2026 18:20:44 +0000</pubDate>
      <link>https://dev.to/sathish_kumar_967/1-html-table-3mel</link>
      <guid>https://dev.to/sathish_kumar_967/1-html-table-3mel</guid>
      <description>&lt;p&gt;A table is used to display data in rows and columns.&lt;br&gt;
Basic tags:&lt;/p&gt;

&lt;p&gt;→ Creates a table&lt;br&gt;
 → Creates a table row&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;&lt;tbody&gt;&lt;tr&gt;
&lt;th&gt; → Creates a table heading
&lt;/th&gt;
&lt;td&gt; → Creates table data/cell
Example:
HTML
&lt;table&gt;
  &lt;tbody&gt;
&lt;tr&gt;
    &lt;th&gt;Name&lt;/th&gt;
    &lt;th&gt;Age&lt;/th&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;Arun&lt;/td&gt;
    &lt;td&gt;20&lt;/td&gt;
  &lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Table Border:&lt;br&gt;
To give a border to the table:&lt;br&gt;
table, th, td {&lt;br&gt;
border: 1px solid black;&lt;br&gt;
}&lt;br&gt;
border: 1px solid means:&lt;br&gt;
1px → border thickness&lt;br&gt;
solid → solid line&lt;br&gt;
black → border colour&lt;br&gt;
Border Collapse&lt;br&gt;
table {&lt;br&gt;
border-collapse: collapse;&lt;br&gt;
}&lt;br&gt;
border-collapse: collapse → joins the borders of nearby cells into a single border.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Media Query:&lt;br&gt;
Media query is used to make a webpage responsive.&lt;br&gt;
It helps the website look good on different screen sizes like:&lt;br&gt;
Mobile 📱&lt;br&gt;
Tablet 📲 &lt;br&gt;
Laptop/PC 💻&lt;br&gt;
Example:&lt;br&gt;
&lt;a class="mentioned-user" href="https://dev.to/media"&gt;@media&lt;/a&gt; (max-width: 760px) {&lt;br&gt;
body {&lt;br&gt;
text-align: right;&lt;br&gt;
}&lt;br&gt;
p {&lt;br&gt;
display: none;&lt;br&gt;
}&lt;br&gt;
}&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;


&lt;/td&gt;
&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;

</description>
    </item>
    <item>
      <title>CSS Flexbox-Basic Notes:</title>
      <dc:creator>Sathish Kumar</dc:creator>
      <pubDate>Wed, 16 Sep 2026 18:00:06 +0000</pubDate>
      <link>https://dev.to/sathish_kumar_967/css-flexbox-basic-notes-4jg6</link>
      <guid>https://dev.to/sathish_kumar_967/css-flexbox-basic-notes-4jg6</guid>
      <description>&lt;p&gt;1.display:flex&lt;br&gt;
      display:flex;is used to make an element a flex container.&lt;br&gt;
      By default,the flex direction is row.&lt;/p&gt;

&lt;p&gt;Example:&lt;br&gt;
         .container{&lt;br&gt;
           display:flex;&lt;br&gt;
          }&lt;/p&gt;

&lt;p&gt;2.flex-direction&lt;br&gt;
     flex-direction is used to change the direction of flex items.&lt;/p&gt;

&lt;p&gt;Example:&lt;br&gt;
          .container{&lt;br&gt;
            display:flex;&lt;br&gt;
            flex-direction:colomn;&lt;br&gt;
          }&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Main Axis and Cross Axis:
  The flex-direction decides the main axis and cross axis.
when flex-direction:row
  a) Main axis : Row(horizontal)
  b)Cross axis : Column(vertical)
when flex-direction:column
     a) Main axis : Column(vertical)
     b)Cross axis : Row(horizontal)&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Simple Example:&lt;br&gt;
          .container{&lt;br&gt;
            display:flex;&lt;br&gt;
            flex-direction:row;&lt;br&gt;
          }&lt;/p&gt;

</description>
      <category>programming</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Daily Learning Update: Git:</title>
      <dc:creator>Sathish Kumar</dc:creator>
      <pubDate>Wed, 16 Sep 2026 04:28:24 +0000</pubDate>
      <link>https://dev.to/sathish_kumar_967/daily-learning-update-git-4m3h</link>
      <guid>https://dev.to/sathish_kumar_967/daily-learning-update-git-4m3h</guid>
      <description>&lt;p&gt;1.Interface Basics&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;GUI(Graphics User Interface): Using button and menus to navigate.&lt;/li&gt;
&lt;li&gt;CLI(Command Line Interface): Using text command to interact with systems directly&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;2.Basic Git Command &amp;amp; Workflow:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;git add  -Adds a  specific file to the staging area.&lt;/li&gt;
&lt;li&gt;git restore --staged Remove a file from the staging area.&lt;/li&gt;
&lt;li&gt;git commit -m "message" - Saves your staged changes with a descriptive message.&lt;/li&gt;
&lt;li&gt;Flow:Code -git add -Staging Area -Local Repository -Remote Repository(Gitlab).&lt;/li&gt;
&lt;li&gt;gitLab-ci.yml -File used to configure CI/CD pipelines in GitLab&lt;/li&gt;
&lt;/ul&gt;

</description>
    </item>
    <item>
      <title>PLACEMENT READY PROGRAM</title>
      <dc:creator>Sathish Kumar</dc:creator>
      <pubDate>Wed, 16 Sep 2026 04:17:01 +0000</pubDate>
      <link>https://dev.to/sathish_kumar_967/placement-ready-program-31hk</link>
      <guid>https://dev.to/sathish_kumar_967/placement-ready-program-31hk</guid>
      <description>&lt;p&gt;I'm currently doing placement ready program in payilagam institude in chennai.&lt;br&gt;
In before session we strong in basic of HTML and CSS. &lt;br&gt;
I'm successful complete portfolio web site and push in git.&lt;br&gt;
Today session we learn how to handle git.&lt;br&gt;
How to push the project in git lab.&lt;/p&gt;

</description>
      <category>html</category>
      <category>css</category>
      <category>github</category>
      <category>developer</category>
    </item>
  </channel>
</rss>
