<?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: vidhya murali</title>
    <description>The latest articles on DEV Community by vidhya murali (@vidhya_murali_5aabe7784bd).</description>
    <link>https://dev.to/vidhya_murali_5aabe7784bd</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%2F3924225%2Fe7e20af2-0747-45fc-aa5b-4858d0aacc25.png</url>
      <title>DEV Community: vidhya murali</title>
      <link>https://dev.to/vidhya_murali_5aabe7784bd</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/vidhya_murali_5aabe7784bd"/>
    <language>en</language>
    <item>
      <title>HTML and CSS</title>
      <dc:creator>vidhya murali</dc:creator>
      <pubDate>Fri, 15 May 2026 03:14:34 +0000</pubDate>
      <link>https://dev.to/vidhya_murali_5aabe7784bd/html-and-css-43jn</link>
      <guid>https://dev.to/vidhya_murali_5aabe7784bd/html-and-css-43jn</guid>
      <description>&lt;p&gt;&lt;strong&gt;SEMANTIC TAGS&lt;/strong&gt; &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A semantic element clearly describes its meaning to both the browser and the developer.&lt;/li&gt;
&lt;li&gt;Examples of non-semantic elements: div and span - Tells nothing about its content.&lt;/li&gt;
&lt;li&gt;Examples of semantic elements: img, table, article - Clearly defines its content.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;CSS DISPLAY PROPERTY&lt;/strong&gt;&lt;br&gt;
The display property specifies the display behavior (the type of rendering box) of an 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%2Fx0io7siiewfv4s1uobg0.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%2Fx0io7siiewfv4s1uobg0.png" alt=" " width="316" height="109"&gt;&lt;/a&gt;&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%2Fw7oe5ntpawp7327gur5m.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%2Fw7oe5ntpawp7327gur5m.png" alt=" " width="751" height="381"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;CSS Flexbox (Flexible Box Layout)&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Flexbox is a layout model for arranging items (horizontally or vertically) within a container, in a flexible and responsive way.&lt;/li&gt;
&lt;li&gt;Flexbox makes it easy to design a flexible and responsive layout, without using float or positioning.&lt;/li&gt;
&lt;/ul&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%2Fjkdy3krj0woefb91pvux.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%2Fjkdy3krj0woefb91pvux.png" alt=" " width="552" height="141"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A flexbox always consists of:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A Flex Container - The parent (container) element, where the display property is set to flex or inline-flex&lt;/li&gt;
&lt;li&gt;One or more Flex Items - The direct children of the flex container automatically becomes flex items&lt;/li&gt;
&lt;/ul&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%2Ffkfs0x7vn0q7tvoskq2l.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%2Ffkfs0x7vn0q7tvoskq2l.png" alt=" " width="630" height="157"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;CSS justify-content Property&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The justify-content property aligns the flexible container's items when the items do not use all available space on the main-axis (horizontally).&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%2Folhw4oyrhi57jgh9w827.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%2Folhw4oyrhi57jgh9w827.png" alt=" " width="725" height="468"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;CSS align-items Property&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The align-items property specifies the default alignment for items inside a flexbox or grid container.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;In a flexbox container, the flexbox items are aligned on the cross axis, which is vertical by default (opposite of flex-direction).&lt;/li&gt;
&lt;li&gt;In a grid container, the grid items are aligned in the block direction. For pages in English, block direction is downward and inline direction is left to right.&lt;/li&gt;
&lt;li&gt;For this property to have any alignment effect, the items need available space around themselves in the appropriate direction.
Tip: Use the align-self property of each item to override the align-items property.&lt;/li&gt;
&lt;/ul&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%2Feimp3wwp6ctoxpj5iykd.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%2Feimp3wwp6ctoxpj5iykd.png" alt=" " width="771" height="490"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Reference : &lt;a href="https://www.w3schools.com/html/html5_semantic_elements.asp" rel="noopener noreferrer"&gt;https://www.w3schools.com/html/html5_semantic_elements.asp&lt;/a&gt;&lt;/p&gt;

</description>
      <category>css</category>
      <category>webdev</category>
      <category>html</category>
      <category>programming</category>
    </item>
    <item>
      <title>DAY 2- CSS</title>
      <dc:creator>vidhya murali</dc:creator>
      <pubDate>Thu, 14 May 2026 03:25:43 +0000</pubDate>
      <link>https://dev.to/vidhya_murali_5aabe7784bd/day-3-css-4dpe</link>
      <guid>https://dev.to/vidhya_murali_5aabe7784bd/day-3-css-4dpe</guid>
      <description>&lt;p&gt;&lt;strong&gt;What is CSS?&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;CSS is the language we use to style a Web page.&lt;/li&gt;
&lt;li&gt;CSS stands for Cascading Style Sheets&lt;/li&gt;
&lt;li&gt;CSS describes how HTML elements are to be displayed on screen, paper, or in other media&lt;/li&gt;
&lt;li&gt;CSS saves a lot of work. It can control the layout of     multiple web pages all at once&lt;/li&gt;
&lt;li&gt;External stylesheets are stored in CSS files&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;*&lt;em&gt;CSS Syntax *&lt;/em&gt;:&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%2F99mzjmx8ajgbmwshehx1.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%2F99mzjmx8ajgbmwshehx1.png" alt=" " width="577" height="137"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A CSS rule consists of a selector and a declaration block:&lt;/li&gt;
&lt;li&gt;The selector points to the HTML element you want to style.&lt;/li&gt;
&lt;li&gt;The declaration block contains one or more declarations separated by semicolons.&lt;/li&gt;
&lt;li&gt;Each declaration includes a CSS property name and a value, separated by a colon.&lt;/li&gt;
&lt;li&gt;Multiple CSS declarations are separated with semicolons, and declaration blocks are surrounded by curly braces.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;The CSS Box Model&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;In CSS, the term "box model" is used when talking about web design and layout.&lt;/li&gt;
&lt;li&gt;The CSS box model is essentially a box that wraps around every HTML element.&lt;/li&gt;
&lt;li&gt;Every box consists of four parts: content, padding, borders and margins.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The image below illustrates the CSS box model&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%2Fgn96qsr7wur8cfwwsil0.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%2Fgn96qsr7wur8cfwwsil0.png" alt=" " width="800" height="361"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;CSS Backgrounds&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The CSS background properties are used to add background effects for elements.&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%2Fszan3jwvglfyl2zm1adu.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%2Fszan3jwvglfyl2zm1adu.png" alt=" " width="576" height="253"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Reference : &lt;a href="https://www.w3schools.com/css/css_background.asp" rel="noopener noreferrer"&gt;https://www.w3schools.com/css/css_background.asp&lt;/a&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>ai</category>
      <category>programming</category>
      <category>css</category>
    </item>
    <item>
      <title>Day1 - HTML</title>
      <dc:creator>vidhya murali</dc:creator>
      <pubDate>Wed, 13 May 2026 03:24:26 +0000</pubDate>
      <link>https://dev.to/vidhya_murali_5aabe7784bd/day1-html-16dn</link>
      <guid>https://dev.to/vidhya_murali_5aabe7784bd/day1-html-16dn</guid>
      <description>&lt;p&gt;Hi all. Today I Learnt about HTML.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is HTML ?&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;HTML stands for &lt;em&gt;Hyper Text Markup Language&lt;/em&gt;
&lt;/li&gt;
&lt;li&gt;HTML is the standard markup language for creating Web pages&lt;/li&gt;
&lt;li&gt;HTML describes the structure of a Web page&lt;/li&gt;
&lt;li&gt;HTML consists of a series of elements&lt;/li&gt;
&lt;li&gt;HTML elements tell the browser how to display the content&lt;/li&gt;
&lt;li&gt;HTML elements label pieces of content such as "this is a heading", "this is a paragraph".&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;What is Markup Language?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;A &lt;em&gt;markup language&lt;/em&gt; is a text-encoding system that uses tags or symbols to define the structure, formatting, or relationships within a document, allowing computers to interpret and display content properly. It separates content from presentation, defining elements like headings and links rather than performing logic.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is Elements ?&lt;/strong&gt;&lt;br&gt;
The HTML element is everything from the start tag to the end tag with Content.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is metaData ?&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The  tag defines metadata about an HTML document. Metadata is data (information) about data.&lt;/li&gt;
&lt;li&gt; tags always go inside the  element, and are typically used to specify character set, page description, keywords, author of the document, and viewport settings.&lt;/li&gt;
&lt;li&gt;Metadata will not be displayed on the page, but is machine parsable.&lt;/li&gt;
&lt;li&gt;Metadata is used by browsers (how to display content or reload page), search engines (keywords), and other web services.&lt;/li&gt;
&lt;li&gt;There is a method to let web designers take control over the viewport (the user's visible area of a web page), through the  tag (See "Setting The Viewport" example below).&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>webdev</category>
      <category>html</category>
      <category>frontend</category>
      <category>ai</category>
    </item>
    <item>
      <title>Linux</title>
      <dc:creator>vidhya murali</dc:creator>
      <pubDate>Mon, 11 May 2026 13:34:56 +0000</pubDate>
      <link>https://dev.to/vidhya_murali_5aabe7784bd/linux-295e</link>
      <guid>https://dev.to/vidhya_murali_5aabe7784bd/linux-295e</guid>
      <description>&lt;p&gt;Hi all,&lt;/p&gt;

&lt;p&gt;Today I learnt about Linux Basics.&lt;/p&gt;

&lt;p&gt;what is Linux - Linux is a Free Open Source Operating System used in Servers, Laptops, Phones.&lt;/p&gt;

&lt;p&gt;Why - Free to use, Secure , Fast and Lightweight, Customizable ,98% companies and developers using Linux.&lt;/p&gt;

&lt;p&gt;Basic Linux Commands :&lt;/p&gt;

&lt;p&gt;1, To check Current Directory   - pwd&lt;br&gt;
2,To list files   - ls&lt;br&gt;
3,To change Directory - cd&lt;br&gt;
4,Go back - cd..&lt;br&gt;
5,To create new Folder - mkdir&lt;br&gt;
6,To create File  - touch&lt;/p&gt;

</description>
      <category>linux</category>
      <category>webdev</category>
      <category>ai</category>
      <category>programming</category>
    </item>
  </channel>
</rss>
