<?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>Forem: Vigneshwaran V</title>
    <description>The latest articles on Forem by Vigneshwaran V (@vigneshwaran_v).</description>
    <link>https://forem.com/vigneshwaran_v</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%2F3929813%2F3f220205-5a39-445a-8b84-ab55e898d116.jpeg</url>
      <title>Forem: Vigneshwaran V</title>
      <link>https://forem.com/vigneshwaran_v</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/vigneshwaran_v"/>
    <language>en</language>
    <item>
      <title>Learning HTML and CSS-3</title>
      <dc:creator>Vigneshwaran V</dc:creator>
      <pubDate>Fri, 15 May 2026 20:03:57 +0000</pubDate>
      <link>https://forem.com/vigneshwaran_v/learning-html-and-css-3-3p91</link>
      <guid>https://forem.com/vigneshwaran_v/learning-html-and-css-3-3p91</guid>
      <description>&lt;h2&gt;
  
  
  What is table in HTML?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;In HTML, a Table is a structure used to organize the data in a two-dimensional grid of rows and columns.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;It specifically designed for presenting tabular data like schedules, price list, or statistics, in a way that is easy to read and compare.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;It can show text, images, links, and other elements inside the table.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Sample code:
&lt;/h2&gt;

&lt;p&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.amazonaws.com%2Fuploads%2Farticles%2Fagwxfjoxwnmnf1yelen0.png" 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.amazonaws.com%2Fuploads%2Farticles%2Fagwxfjoxwnmnf1yelen0.png" alt=" " width="379" height="889"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What is border collapse?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;The border-collapse property in CSS determine whether table cells share a single common border or maintain separate individual borders.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;It is primarily applied for table elements or elements styled with display: table;.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Key property:
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;collapse: Adjacent table cells merge their borders into a single shared line. This removes any space between cells and is commonly used to create a "clean" grid look.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;separate: Each cell keeps its own distinct border, resulting in "double" borders where cells meet. In this mode, you can use the border-spacing property to adjust the distance between those borders.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
    </item>
    <item>
      <title>Learning HTML and CSS-2</title>
      <dc:creator>Vigneshwaran V</dc:creator>
      <pubDate>Fri, 15 May 2026 19:23:04 +0000</pubDate>
      <link>https://forem.com/vigneshwaran_v/learning-html-and-css-2-2717</link>
      <guid>https://forem.com/vigneshwaran_v/learning-html-and-css-2-2717</guid>
      <description>&lt;p&gt;Today i have learned to build a resume using HTML and CSS by uses of properties like Class selector, Basics of grid and flex concepts.&lt;/p&gt;

&lt;h2&gt;
  
  
  Class Selector:
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;In CSS, a Class Selector is used to target and style multiple HTML elements that share a specific class Attribute.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Unlike id Selectors class Selectors can be applied to any number of elements on a page.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;An element can have multiple classes separated by spaces, allowing you to combine different styles.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;The element Selector selects HTML elements based on the element name.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What is Grid?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;In CSS Grid is a powerful two-dimensional layout system that allows you to arrange content in both rows and columns simultaneously.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;it provide more flexible way to build complex responsive web design compared to older methods like floats or positioning.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Grid Container: &lt;br&gt;
The parent element where you apply display: grid;. this create the grid context for all its direct children.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;The direct children of grid container that automatically become part of the grid layout.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Essential properties of Grid
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;grid-template-columns/grid-template-rows: Defines the number and size of your columns and rows.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;gap: Sets the spacing between rows and columns.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;fr unit: A special Fractional unit is used in CSS grid to distribute the available space within the container.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What is Flex?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;In CSS Flex is a one dimensional layout model used to arrange the elements in rows or columns.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;It allows items to flex by growing to fill available space or shrinking to prevent overflow, making it essential for building responsive Web Design.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Flex container: the parent element created by setting display: flex; or display: inline-flex;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Flex items: The direct children of a flex container.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Core properties of Flex Container
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;flex-direction: Sets the main Axis (eg: row, column, row-reverse).&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;justify-content: Aligns items along the main axis (eg: center, space-between).&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;align-items: Aligns items along the cross axis (eg: center, start).&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>beginners</category>
      <category>css</category>
      <category>html</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Linux OS</title>
      <dc:creator>Vigneshwaran V</dc:creator>
      <pubDate>Fri, 15 May 2026 07:41:08 +0000</pubDate>
      <link>https://forem.com/vigneshwaran_v/linux-os-43ng</link>
      <guid>https://forem.com/vigneshwaran_v/linux-os-43ng</guid>
      <description>&lt;h2&gt;
  
  
  What is Linux?
&lt;/h2&gt;

&lt;p&gt;Linux is a free open source operating system. launched in 1991 by Linux Torvalds, it act as a secure and highly customizable alternative to Windows or macOS, it one of most popular OS used by many developers and users , and it is very light weight so it feels faster compare to other OS.&lt;/p&gt;

&lt;h2&gt;
  
  
  Advantages of Linux
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Open Source and Free.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;More Secure and Privacy.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Stable and Reliable.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Performance and Flexibility.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Best for Developer.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Support CLI and GUI.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Disadvantages of Linux
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;It Required to use the Command Line Interface (CLI) for Configuration or Troubleshooting.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Software incompatibility: many popular applications don't have native Linux Version.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Hardware Driver Issue: A few device may lack driver support, that device do not work out of the box.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Gaming support: Gaming support is improved but not like windows for some Game.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Fragmentation: with hundreds of different distributions finding support or consistent documentation is difficult for beginners. &lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
    </item>
    <item>
      <title>Learning HTML and CSS</title>
      <dc:creator>Vigneshwaran V</dc:creator>
      <pubDate>Fri, 15 May 2026 02:21:18 +0000</pubDate>
      <link>https://forem.com/vigneshwaran_v/learning-html-and-css-29p2</link>
      <guid>https://forem.com/vigneshwaran_v/learning-html-and-css-29p2</guid>
      <description>&lt;p&gt;Today i learned something about HTML and CSS to create portfolio using HTML and CSS, so today i learned lot of tags and styles, like header, section, footer, nav, a, h1, h2, p, ul, and i have learned some styles like padding, margin, color, background-color, text-align, text-decoration, width and border-radius.&lt;/p&gt;

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

&lt;p&gt;Margin and Padding are CSS properties used for spacing in Box Model.&lt;br&gt;
Margin is used to provide space outside the border of the box, and padding is used to provide space in between border and content of the box.&lt;/p&gt;

&lt;p&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.amazonaws.com%2Fuploads%2Farticles%2Fmn7rzvcjzdn0popmb6jy.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.amazonaws.com%2Fuploads%2Farticles%2Fmn7rzvcjzdn0popmb6jy.jpeg" alt=" " width="275" height="183"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Semantic tags
&lt;/h2&gt;

&lt;p&gt;In HTML some elements that are clearly describe the their meaning to both the browser and developer. it specify what kind of content they hold inside it. today i learned some semantic tags like header, nav, section, and footer.&lt;/p&gt;

&lt;h2&gt;
  
  
  a tag
&lt;/h2&gt;

&lt;p&gt;a tag is known as anchor element which is used to create a hyperlink that connect one page to another or jump to specific sections in the same page.&lt;br&gt;
*&lt;em&gt;hyperlink *&lt;/em&gt; is a HTML links you can click on a link and jump to another document.&lt;/p&gt;

&lt;h2&gt;
  
  
  href
&lt;/h2&gt;

&lt;p&gt;href stands for hypertext reference is an attribute used to specify the destination of a link, without this attribute, an element cannot function as a clickable hyperlink.&lt;/p&gt;

&lt;h2&gt;
  
  
  Inline Elements
&lt;/h2&gt;

&lt;p&gt;An inline elements are those who takes only necessary space, it takes only width needed for their content, it doesn't take 100% width, so it doesn't start from new line.&lt;/p&gt;

&lt;h2&gt;
  
  
  Block Level Elements
&lt;/h2&gt;

&lt;p&gt;Block level elements are the elements that occupy the full width of their parent container and always start on a new line.&lt;/p&gt;

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

&lt;p&gt;&amp;amp;copy is called an HTML Entity, HTML entities are special codes used to display symbols or reserved characters in webpages.&lt;/p&gt;

&lt;p&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.amazonaws.com%2Fuploads%2Farticles%2F04a3dhujuhwr3nt4c5bj.png" 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.amazonaws.com%2Fuploads%2Farticles%2F04a3dhujuhwr3nt4c5bj.png" alt=" " width="537" height="660"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>css</category>
      <category>html</category>
      <category>webdev</category>
    </item>
    <item>
      <title>introduction to html</title>
      <dc:creator>Vigneshwaran V</dc:creator>
      <pubDate>Wed, 13 May 2026 18:23:57 +0000</pubDate>
      <link>https://forem.com/vigneshwaran_v/introduction-to-html-6en</link>
      <guid>https://forem.com/vigneshwaran_v/introduction-to-html-6en</guid>
      <description>&lt;h2&gt;
  
  
  What is HTML?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;HTML stands for hypertext markup language.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Is the standard markup language.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;It is used to create and structure the content of webpage.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;the current version of HTML we use nowadays is HTML5.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;HTML uses browser to display the output.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Here the browser act like a traditional compiler to show the output.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;HTML file contains meta data about that page.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;meta data is nothing but data about the data.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In HTML file meta data is placed inside the &lt;/p&gt;    element.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What is Markup Language?
&lt;/h2&gt;

&lt;p&gt;A markup language is used to annotate the document with the help of tags to structure, format, and display the content of the webpage.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Markup language?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;To define structure, layout, and format of the text and data placed inside the tags.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Here tags mark up the text with its format.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  When Markup language?
&lt;/h2&gt;

&lt;p&gt;Whenever we need to design the text or data of documents then we need to go with markup language to define elements like headings, links, and paragraphs for interpretation by computers or browsers.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is Element?
&lt;/h2&gt;

&lt;p&gt;Element in HTML is nothing but any data which placed inside the paired tag is known as Element.&lt;/p&gt;

&lt;p&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.amazonaws.com%2Fuploads%2Farticles%2F15zs7kefjlxada52ln2o.png" 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.amazonaws.com%2Fuploads%2Farticles%2F15zs7kefjlxada52ln2o.png" alt=" " width="568" height="48"&gt;&lt;/a&gt;&lt;/p&gt;

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

&lt;p&gt;There are three main ways to use CSS in Webpage, each serves a different purpose based on how many pages you need to style.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Inline CSS:
CSS written inside the tag within the HTML file.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&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.amazonaws.com%2Fuploads%2Farticles%2Fzflm2rnwmpm387cgqn3g.png" 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.amazonaws.com%2Fuploads%2Farticles%2Fzflm2rnwmpm387cgqn3g.png" alt=" " width="633" height="79"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Internal CSS:
CSS written inside the   element within the  section of your HTML document.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&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.amazonaws.com%2Fuploads%2Farticles%2Ft14gerv4pcmot2lurofc.png" 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.amazonaws.com%2Fuploads%2Farticles%2Ft14gerv4pcmot2lurofc.png" alt=" " width="501" height="539"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;External CSS:
CSS written in separate .CSS file and it is linked to our HTML file inside  section.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&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.amazonaws.com%2Fuploads%2Farticles%2Ftwnadsrho7olv9paauxl.png" 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.amazonaws.com%2Fuploads%2Farticles%2Ftwnadsrho7olv9paauxl.png" alt=" " width="619" height="133"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Difference between tags and elements
&lt;/h2&gt;


&lt;p&gt;HTML tags are markup commands like &lt;/p&gt;
 that tell browser how to display the contents, while elements are the complete unit consisting of start tag, content, and the end tag.

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