<?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: vidhya murali</title>
    <description>The latest articles on Forem by vidhya murali (@vidhya_murali_5aabe7784bd).</description>
    <link>https://forem.com/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>Forem: vidhya murali</title>
      <link>https://forem.com/vidhya_murali_5aabe7784bd</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/vidhya_murali_5aabe7784bd"/>
    <language>en</language>
    <item>
      <title>HTML,CSS Questions</title>
      <dc:creator>vidhya murali</dc:creator>
      <pubDate>Sat, 23 May 2026 03:40:11 +0000</pubDate>
      <link>https://forem.com/vidhya_murali_5aabe7784bd/htmlcss-questions-23h7</link>
      <guid>https://forem.com/vidhya_murali_5aabe7784bd/htmlcss-questions-23h7</guid>
      <description>&lt;p&gt;&lt;strong&gt;Display Properties&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;CSS display property defines how an element is shown on the webpage.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Common Display Properties&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;display: block&lt;/strong&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Element takes full width and starts on a new line.&lt;/p&gt;

&lt;p&gt;Examples: div, h1,p&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;display: inline&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Element takes only content width.&lt;/p&gt;

&lt;p&gt;Examples: span ,a, b&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;display: inline-block&lt;/strong&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Combination of inline + block.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;display: none&lt;/strong&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Element completely disappears&lt;/p&gt;

&lt;p&gt;*&lt;em&gt;Box-Sizing Property *&lt;/em&gt;:&lt;/p&gt;

&lt;p&gt;box-sizing defines how the total width and height of an element are calculated&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;box-sizing: content-box (Default)&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Width only applies to content area.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;box-sizing: border-box&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Padding and border are included inside width&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>html</category>
      <category>css</category>
      <category>programming</category>
    </item>
    <item>
      <title>GIT</title>
      <dc:creator>vidhya murali</dc:creator>
      <pubDate>Sat, 23 May 2026 03:29:39 +0000</pubDate>
      <link>https://forem.com/vidhya_murali_5aabe7784bd/git-5cd9</link>
      <guid>https://forem.com/vidhya_murali_5aabe7784bd/git-5cd9</guid>
      <description>&lt;p&gt;&lt;strong&gt;GIT&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;It is used to track changes in code, collaborate with others, and manage software projects efficiently.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Basic Git Workflow&lt;/strong&gt;&lt;br&gt;
Modify files&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;git add .&lt;/li&gt;
&lt;li&gt;git commit -m "message"&lt;/li&gt;
&lt;li&gt;git push
**
GitHub**&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;GitHub is a cloud-based platform used to host Git repositories and collaborate on software projects.&lt;/p&gt;

&lt;p&gt;It works together with Git.&lt;/p&gt;

&lt;p&gt;What GitHub is Used For&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Storing code online&lt;/li&gt;
&lt;li&gt;Collaboration with teams&lt;/li&gt;
&lt;li&gt;Version control&lt;/li&gt;
&lt;li&gt;Open-source projects&lt;/li&gt;
&lt;li&gt;Portfolio for developers&lt;/li&gt;
&lt;li&gt;CI/CD and deployment&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;GitLab&lt;/strong&gt; :&lt;/p&gt;

&lt;p&gt;GitLab is a web-based platform used for Git repository hosting, collaboration, DevOps, and CI/CD automation.&lt;/p&gt;

&lt;p&gt;It is similar to GitHub but includes more built-in DevOps features.&lt;/p&gt;

&lt;p&gt;Features of GitLab&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Git repository hosting&lt;/li&gt;
&lt;li&gt;Version control&lt;/li&gt;
&lt;li&gt;Branch management&lt;/li&gt;
&lt;li&gt;Merge requests&lt;/li&gt;
&lt;li&gt;Issue tracking&lt;/li&gt;
&lt;li&gt;CI/CD pipelines&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>git</category>
      <category>github</category>
      <category>webdev</category>
      <category>programming</category>
    </item>
    <item>
      <title>HTML, CSS interview Questions</title>
      <dc:creator>vidhya murali</dc:creator>
      <pubDate>Tue, 19 May 2026 03:27:29 +0000</pubDate>
      <link>https://forem.com/vidhya_murali_5aabe7784bd/html-css-interview-questions-3cmb</link>
      <guid>https://forem.com/vidhya_murali_5aabe7784bd/html-css-interview-questions-3cmb</guid>
      <description>&lt;p&gt;*&lt;em&gt;Meta tag *&lt;/em&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;/ul&gt;

&lt;p&gt;&lt;strong&gt;Alternate for HTML&lt;/strong&gt;&lt;br&gt;
XML:&lt;br&gt;
Extensible Markup Language (XML) is a markup language used for storing structured data. It uses custom tags to define the elements which support a wide range of elements. It was developed because HTML was unable to define new elements hence XML was introduced which was extensible to define custom elements.&lt;br&gt;
It was designed to store and transport data and contain information about the sender, receiver, heading, and message body. It is more focused on what data is rather than how data looks. It is used for representing documents, data, transactions, invoices, etc. &lt;/p&gt;

&lt;p&gt;Example: Implementation of the basic structure of XML code.&lt;/p&gt;

&lt;p&gt;XHTML:&lt;br&gt;
Extensible Hypertext Markup Language (XHTML) is a markup language that is used to create HTML documents that support custom tags to define new elements. It is more strict than HTML in terms of error handling i.e browser doesn't display web pages in case of errors in the markup document. It creates an XML version of the HTML document which must be marked up correctly.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Box-Sizing&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;CSS Box Sizing&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The CSS box-sizing property defines how to calculate the width and height of an element: should the calculation include padding and borders, or not.&lt;/li&gt;
&lt;li&gt;By default, the width and height of an element is calculated like this:&lt;/li&gt;
&lt;/ul&gt;

&lt;ol&gt;
&lt;li&gt;- width + padding + border = actual width of an element&lt;/li&gt;
&lt;li&gt;- height + padding + border = actual height of an element
This means: When you set the width/height of an element, the element often appears bigger than you have set (because the element's border and padding are added to the element's specified width/height)&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>html</category>
      <category>css</category>
    </item>
    <item>
      <title>Tables in HTML</title>
      <dc:creator>vidhya murali</dc:creator>
      <pubDate>Tue, 19 May 2026 03:18:01 +0000</pubDate>
      <link>https://forem.com/vidhya_murali_5aabe7784bd/tables-in-html-147a</link>
      <guid>https://forem.com/vidhya_murali_5aabe7784bd/tables-in-html-147a</guid>
      <description>&lt;p&gt;&lt;strong&gt;Define an HTML Table&lt;/strong&gt;&lt;br&gt;
A table in HTML consists of table cells inside rows and columns.&lt;br&gt;
HTML tables allow web developers to arrange data into rows and columns.&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%2F7zo2406nb1lmrebobdgx.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%2F7zo2406nb1lmrebobdgx.png" alt=" " width="350" height="401"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Each table cell is defined by a &lt;td&gt; and a &lt;/td&gt; tag.[td stands for table data.]&lt;/li&gt;
&lt;li&gt;Each table row starts with a &lt;tr&gt; and ends with a &lt;/tr&gt; tag.[tr stands for table row.]&lt;/li&gt;
&lt;li&gt;Sometimes you want your cells to be table header cells. In those cases use the &lt;th&gt; tag instead of the &lt;/th&gt;
&lt;td&gt; tag.[th stands for table header.]


&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%2F1zpz2o1jv4iaizwbik8a.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%2F1zpz2o1jv4iaizwbik8a.png" alt=" " width="755" height="509"&gt;&lt;/a&gt;&lt;/p&gt;

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

</description>
    </item>
    <item>
      <title>HTML and CSS</title>
      <dc:creator>vidhya murali</dc:creator>
      <pubDate>Fri, 15 May 2026 03:14:34 +0000</pubDate>
      <link>https://forem.com/vidhya_murali_5aabe7784bd/html-and-css-43jn</link>
      <guid>https://forem.com/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://forem.com/vidhya_murali_5aabe7784bd/day-3-css-4dpe</link>
      <guid>https://forem.com/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://forem.com/vidhya_murali_5aabe7784bd/day1-html-16dn</link>
      <guid>https://forem.com/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://forem.com/vidhya_murali_5aabe7784bd/linux-295e</link>
      <guid>https://forem.com/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>
