<?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: Kamalesh AR</title>
    <description>The latest articles on DEV Community by Kamalesh AR (@kamalesh_ar_6252544786997).</description>
    <link>https://dev.to/kamalesh_ar_6252544786997</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%2F3925287%2F12ec5ab2-2cb6-4e9b-88b0-8c11abacd4eb.png</url>
      <title>DEV Community: Kamalesh AR</title>
      <link>https://dev.to/kamalesh_ar_6252544786997</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/kamalesh_ar_6252544786997"/>
    <language>en</language>
    <item>
      <title>Introduction to HTML and CSS</title>
      <dc:creator>Kamalesh AR</dc:creator>
      <pubDate>Fri, 15 May 2026 02:11:07 +0000</pubDate>
      <link>https://dev.to/kamalesh_ar_6252544786997/introduction-to-html-and-css-1ch4</link>
      <guid>https://dev.to/kamalesh_ar_6252544786997/introduction-to-html-and-css-1ch4</guid>
      <description>&lt;p&gt;Today i learned how to create a resume building using a HTML and CSS by uses of properties like a class selector, basics of grid and flex concepts.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Class selector:&lt;/strong&gt;
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;In HTML, the class selector is a pattern used in CSS to select and style elements that have a specific class attribute. Unlike an ID, which must be unique to one element, a class can be applied to multiple elements on the same page, making it ideal for reusable styles&lt;/li&gt;
&lt;li&gt;The CSS class selector matches elements based on the contents of their class attribute.&lt;/li&gt;
&lt;li&gt;The element selector selects HTML elements based on the element name.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;What is grid?&lt;/strong&gt;
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;The CSS grid layout module excels at dividing a page into major regions or defining the relationship in terms of size, position, and layering between parts of a control built from HTML primitives.&lt;/li&gt;
&lt;li&gt;The Grid Layout Module offers a grid-based layout system, with rows and columns.&lt;/li&gt;
&lt;li&gt;The Grid Layout Module allows developers to easily create complex web layouts.&lt;/li&gt;
&lt;li&gt;The Grid Layout Module makes it easy to design a responsive layout structure, without using float or positioning.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;What is flex?&lt;/strong&gt;
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;In CSS, "flex" usually refers to either the Flexible Box Layout (Flexbox) module or the specific flex shorthand property used within that layout system.&lt;/li&gt;
&lt;li&gt;The flex CSS shorthand property sets how a flex item will grow or shrink to fit the space available in its flex container.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Reference &lt;br&gt;
class selector &lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;a href="https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Selectors/Class_selectors" rel="noopener noreferrer"&gt;https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Selectors/Class_selectors&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.w3schools.com/css/css_selectors.asp" rel="noopener noreferrer"&gt;https://www.w3schools.com/css/css_selectors.asp&lt;/a&gt;
grid&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://developer.mozilla.org/en-US/docs/Web/CSS/Guides/Grid_layout" rel="noopener noreferrer"&gt;https://developer.mozilla.org/en-US/docs/Web/CSS/Guides/Grid_layout&lt;/a&gt;
2.&lt;a href="https://www.w3schools.com/css/css_grid.asp" rel="noopener noreferrer"&gt;https://www.w3schools.com/css/css_grid.asp&lt;/a&gt;
flex&lt;/li&gt;
&lt;li&gt;&lt;a href="https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Properties/flex" rel="noopener noreferrer"&gt;https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Properties/flex&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.w3schools.com/cssref/css3_pr_flex.php" rel="noopener noreferrer"&gt;https://www.w3schools.com/cssref/css3_pr_flex.php&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>html</category>
      <category>css</category>
      <category>ai</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Day 2: Learning HTML and CSS</title>
      <dc:creator>Kamalesh AR</dc:creator>
      <pubDate>Wed, 13 May 2026 12:46:56 +0000</pubDate>
      <link>https://dev.to/kamalesh_ar_6252544786997/day-2-learning-html-and-css-lg3</link>
      <guid>https://dev.to/kamalesh_ar_6252544786997/day-2-learning-html-and-css-lg3</guid>
      <description>&lt;p&gt;Today i learned about, How to create a portfolio using a HTML and CSS. In this session i learned about the a tag, href, margin and padding. And also blocklevel element, inline element and about the list.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Margin and Padding&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Margin and padding are the CSS properties used for spacing in box model. Margin is used for space &lt;strong&gt;outside the box&lt;/strong&gt;. Padding is used for space &lt;strong&gt;inside the box&lt;/strong&gt; of the webpage.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;a tag:&lt;/strong&gt;&lt;br&gt;
a tag is a &lt;strong&gt;anchor element&lt;/strong&gt; using to create a hyperlink in the webpage. It connects one page to another page links to different section within the same page.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;href:&lt;/strong&gt;&lt;br&gt;
href is stands for &lt;strong&gt;hypertext reference&lt;/strong&gt; is an attribute used to specify the destination of a link. It is most commonly used within the anchor tag to create clickable hyperlinks.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;What are inline element:&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;An inline element does not start on a new line.It only takes the width needed for its content.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;What are block level element:&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;A block-level element starts on a new line and takes the full width available.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;What is &amp;amp;copy:&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;&amp;amp;copy is a character entity used to display the copyright symbol.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why it use:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;HTML entities are used because:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Some symbols are reserved in HTML.&lt;/li&gt;
&lt;li&gt;Ensures proper display in browsers.&lt;/li&gt;
&lt;li&gt;Makes code more compatible.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Refered by:&lt;br&gt;
google&lt;br&gt;
w3schools-&lt;a href="https://www.w3schools.com/tags/att_a_href.asp" rel="noopener noreferrer"&gt;https://www.w3schools.com/tags/att_a_href.asp&lt;/a&gt;&lt;br&gt;
Geeksforgeeks-&lt;a href="https://www.geeksforgeeks.org/html/html-lists/" rel="noopener noreferrer"&gt;https://www.geeksforgeeks.org/html/html-lists/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>css</category>
      <category>html</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Day 1:Introduction to HTML Learning</title>
      <dc:creator>Kamalesh AR</dc:creator>
      <pubDate>Tue, 12 May 2026 16:04:24 +0000</pubDate>
      <link>https://dev.to/kamalesh_ar_6252544786997/introduction-to-html-10b4</link>
      <guid>https://dev.to/kamalesh_ar_6252544786997/introduction-to-html-10b4</guid>
      <description>&lt;h2&gt;
  
  
  &lt;strong&gt;What is HTML&lt;/strong&gt;
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;HTML is stands for &lt;strong&gt;hypertext markup language&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;It is to create structure the content of webpage.&lt;/li&gt;
&lt;li&gt;It consists of series of element.&lt;/li&gt;
&lt;li&gt;It contains a tags &lt;code&gt;head&lt;/code&gt;,&lt;code&gt;body&lt;/code&gt;,&lt;code&gt;title&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Now we uses html5 version.&lt;/li&gt;
&lt;li&gt;Html uses browser to display the output.&lt;/li&gt;
&lt;li&gt;It contains the &lt;strong&gt;meta data&lt;/strong&gt; about the page.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;What is markup language&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;A markup language is a language used to &lt;strong&gt;structure, format, and display&lt;/strong&gt; content on webpages or documents using special tags.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Why markup language&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Because tags “mark up” the text with information about structure and formatting.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Features of markup language&lt;/strong&gt;
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Uses tags.&lt;/li&gt;
&lt;li&gt;Easy to read.&lt;/li&gt;
&lt;li&gt;Not a programming language.&lt;/li&gt;
&lt;li&gt;Used for webpage structure. &lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;What is element&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;An HTML element is a fundamental building block of a webpage that tells a web browser how to structure and interpret a specific piece of content. It typically consists of a start tag, content, and an end tag.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;opening tag.&lt;/li&gt;
&lt;li&gt;content.&lt;/li&gt;
&lt;li&gt;closing tag.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Type of CSS&lt;/strong&gt;
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Inline CSS:&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;CSS is written directly inside the HTML tag using the &lt;strong&gt;style&lt;/strong&gt; attribute.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;h1&lt;/span&gt; &lt;span class="na"&gt;style=&lt;/span&gt;&lt;span class="s"&gt;"color:red;"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;Hello&lt;span class="nt"&gt;&amp;lt;/h1&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;Internal CSS:&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;CSS is written inside the &lt;strong&gt;&lt;/strong&gt; tag within the HTML file.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;head&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;style&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;p&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="nl"&gt;color&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="no"&gt;blue&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/style&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/head&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;External CSS:&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;CSS is written in a separate &lt;strong&gt;.css&lt;/strong&gt; file and linked to HTML.&lt;/p&gt;

&lt;p&gt;CSS&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight css"&gt;&lt;code&gt;&lt;span class="nt"&gt;p&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="nl"&gt;color&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="no"&gt;green&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  &lt;strong&gt;Difference between tags and element&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;The primary difference is that a &lt;strong&gt;tag&lt;/strong&gt; is a markup command used to define the start or end of a structure, while an &lt;strong&gt;element&lt;/strong&gt; is the complete unit consisting of those tags and the content inside them&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Introduction to Linux (OS)</title>
      <dc:creator>Kamalesh AR</dc:creator>
      <pubDate>Tue, 12 May 2026 15:17:36 +0000</pubDate>
      <link>https://dev.to/kamalesh_ar_6252544786997/introduction-to-linux-os-78n</link>
      <guid>https://dev.to/kamalesh_ar_6252544786997/introduction-to-linux-os-78n</guid>
      <description>&lt;h2&gt;
  
  
  &lt;strong&gt;What is linux?&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Linux is an open source operating system. It is used for developers to developing, server, cloud computing and company uses. It was created by Linux Ttorvalds in 1991. It is highly customizable and free to use. And it has become a one of the most popular operating system in technology.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Why is linux?&lt;/strong&gt;
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;It is free and open source.&lt;/li&gt;
&lt;li&gt;It is fast and lightweight.&lt;/li&gt;
&lt;li&gt;It is secure and stable.&lt;/li&gt;
&lt;li&gt;It is highly customizable for user.&lt;/li&gt;
&lt;li&gt;It is excellent for programming and server.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Advantages of linux&lt;/strong&gt;
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Open source and free.&lt;/li&gt;
&lt;li&gt;More secure.&lt;/li&gt;
&lt;li&gt;High performance. &lt;/li&gt;
&lt;li&gt;Stable and reliable.&lt;/li&gt;
&lt;li&gt;Best for developers.&lt;/li&gt;
&lt;li&gt;Strong command line.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Disadvantage of linux&lt;/strong&gt;
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Learning curve:
Beginners may find difficult because many task by terminal commands.&lt;/li&gt;
&lt;li&gt;Software compatiblity:
Some software is not officially for linux.&lt;/li&gt;
&lt;li&gt;Hardware driver issue:
A few device may not have a proper linux drivers.&lt;/li&gt;
&lt;li&gt;Gaming support:
gaming support is improve but not like windows for some game.&lt;/li&gt;
&lt;li&gt;Different distribution:
too many distributions are there to confused beginners&lt;/li&gt;
&lt;/ul&gt;

</description>
    </item>
    <item>
      <title>Introduction to Linux (OS)</title>
      <dc:creator>Kamalesh AR</dc:creator>
      <pubDate>Mon, 11 May 2026 15:42:05 +0000</pubDate>
      <link>https://dev.to/kamalesh_ar_6252544786997/introduction-to-linux-os-15eg</link>
      <guid>https://dev.to/kamalesh_ar_6252544786997/introduction-to-linux-os-15eg</guid>
      <description>&lt;h2&gt;
  
  
  &lt;strong&gt;What is linux?&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Linux is an open source operating system. It is used for developers to developing, server, cloud computing and company uses. It was created by Linux Torvalds in 1991. It is highly customizable and free to use. And it has become a one of the most popular operating system in technology.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Why is linux?&lt;/strong&gt;
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;It is free and open source.&lt;/li&gt;
&lt;li&gt;It is fast and lightweight.&lt;/li&gt;
&lt;li&gt;It is secure and stable.&lt;/li&gt;
&lt;li&gt;It is highly customizable for user.&lt;/li&gt;
&lt;li&gt;It is excellent for programming and server.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Advantages of linux&lt;/strong&gt;
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Open source and free.&lt;/li&gt;
&lt;li&gt;More secure.&lt;/li&gt;
&lt;li&gt;High performance. &lt;/li&gt;
&lt;li&gt;Stable and reliable.&lt;/li&gt;
&lt;li&gt;Best for developers.&lt;/li&gt;
&lt;li&gt;Strong command line.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Disadvantage of linux&lt;/strong&gt;
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Learning curve:
Beginners may find difficult because many task by terminal commands.&lt;/li&gt;
&lt;li&gt;Software compatiblity:
Some software is not officially for linux.&lt;/li&gt;
&lt;li&gt;Hardware driver issue:
A few device may not have a proper linux drivers.&lt;/li&gt;
&lt;li&gt;Gaming support:
gaming support is improve but not like windows for some game.&lt;/li&gt;
&lt;li&gt;Different distribution:
too many distributions are there to confused beginners&lt;/li&gt;
&lt;/ul&gt;

</description>
    </item>
  </channel>
</rss>
