<?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: Narmatha</title>
    <description>The latest articles on DEV Community by Narmatha (@narmathachandra).</description>
    <link>https://dev.to/narmathachandra</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%2F4020834%2F7b160354-0b89-408e-baad-e9192d63ca87.png</url>
      <title>DEV Community: Narmatha</title>
      <link>https://dev.to/narmathachandra</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/narmathachandra"/>
    <language>en</language>
    <item>
      <title>HTML FORMS</title>
      <dc:creator>Narmatha</dc:creator>
      <pubDate>Thu, 16 Jul 2026 14:33:38 +0000</pubDate>
      <link>https://dev.to/narmathachandra/html-forms-413f</link>
      <guid>https://dev.to/narmathachandra/html-forms-413f</guid>
      <description>&lt;p&gt;WHAT IS HTML FORM?&lt;/p&gt;

&lt;p&gt;An HTML form is used to collect information from users and send the data to a server for processing. It is created using the &lt;/p&gt; tag and contains different form elements like text fields, checkboxes, radio buttons, and buttons

&lt;p&gt;USAGE OF THE HTML FORMS&lt;/p&gt;

&lt;p&gt;1.User Registration&lt;br&gt;
     Collects user information such as name, email, and password.&lt;br&gt;
2.Login Pages&lt;br&gt;
     Used to enter usernames and passwords for authentication.&lt;br&gt;
3.Contact Forms&lt;br&gt;
     Allows users to send messages, queries, or feedback.&lt;br&gt;
4.Search Forms&lt;br&gt;
     Used to search information on websites.&lt;br&gt;
5.Online Shopping&lt;br&gt;
     Collects customer details, addresses, and order information.&lt;br&gt;
6.Surveys and Feedback&lt;br&gt;
     Helps collect opinions and responses from users.&lt;/p&gt;

&lt;p&gt;Common HTML Form Elements&lt;/p&gt;

&lt;p&gt;Text Field ()&lt;/p&gt;

&lt;p&gt;Used to enter single-line text such as name, username, or address.&lt;br&gt;
Example:&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;Password Field ()&lt;/p&gt;

&lt;p&gt;Used to enter passwords. The entered characters are hidden.&lt;br&gt;
Example:&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;Radio Button ()&lt;/p&gt;

&lt;p&gt;Allows the user to select only one option from a group.&lt;br&gt;
Example:&lt;br&gt;
 Male&lt;/p&gt;

&lt;p&gt;Checkbox ()&lt;/p&gt;

&lt;p&gt;Allows the user to select multiple options.&lt;br&gt;
Example:&lt;br&gt;
 Music&lt;/p&gt;

&lt;p&gt;Dropdown List ()

Provides a list of options from which the user can select one.
Example:
&lt;br&gt;
  India&lt;br&gt;
  USA&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;Textarea ()&amp;lt;/p&amp;gt;

&amp;lt;p&amp;gt;Used to enter multiple lines of text, such as comments or messages.&amp;lt;br&amp;gt;
Example:&amp;lt;br&amp;gt;
&amp;lt;textarea&amp;gt;&lt;/p&gt;

&lt;p&gt;Submit Button ()&lt;/p&gt;

&lt;p&gt;Used to submit form data to the server.&lt;br&gt;
Example:&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;File Upload ()&lt;/p&gt;

&lt;p&gt;Allows users to upload files like images or documents.&lt;br&gt;
Example:&lt;br&gt;
&lt;/p&gt;

</description>
    </item>
    <item>
      <title>HTML ATTRIBUTES</title>
      <dc:creator>Narmatha</dc:creator>
      <pubDate>Thu, 16 Jul 2026 14:23:46 +0000</pubDate>
      <link>https://dev.to/narmathachandra/html-attributes-214e</link>
      <guid>https://dev.to/narmathachandra/html-attributes-214e</guid>
      <description>&lt;p&gt;&lt;strong&gt;WHAT IS HTML ATTRIBUTES&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;HTML attributes are special properties that provide additional information about an HTML element or modify its behavior and appearance. They are written inside the opening tag of an HTML element and usually have the format attribute="value".&lt;/p&gt;

&lt;p&gt;*&lt;em&gt;href Attribute *&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;The href (Hypertext Reference) attribute is used to specify the destination URL of a hyperlink. It is mainly used with the &lt;a&gt; (anchor) tag to link one web page to another, or to files, email addresses, or sections within the same page.&lt;/a&gt;&lt;/p&gt;
&lt;a&gt;

&lt;/a&gt;&lt;p&gt;&lt;a&gt;Syntax&lt;br&gt;
&lt;/a&gt;&lt;a href="URL"&gt;Link Text&lt;/a&gt;&lt;br&gt;
Example&lt;br&gt;
&lt;a href="https://www.google.com" rel="noopener noreferrer"&gt;Visit Google&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Common HTML Attributes&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;id **– Gives an HTML element a unique name or identifier. It is used to target a specific element with CSS or JavaScript.&lt;br&gt;
**Example:&lt;/strong&gt;&lt;/p&gt;

&lt;p id="intro"&gt;Welcome&lt;/p&gt;

&lt;p&gt;*&lt;em&gt;class *&lt;/em&gt;– Groups multiple HTML elements together so they can be styled or controlled using CSS or JavaScript.&lt;br&gt;
*&lt;em&gt;Example:&lt;br&gt;
*&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Hello&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;style **– Applies CSS styles directly to an HTML element (inline CSS).&lt;br&gt;
**Example:&lt;/strong&gt;&lt;/p&gt;

&lt;h1&gt;Heading&lt;/h1&gt;

&lt;p&gt;&lt;strong&gt;title&lt;/strong&gt; – Provides extra information about an element and displays it as a tooltip when the mouse is placed over it.&lt;br&gt;
&lt;strong&gt;Example:&lt;/strong&gt;&lt;/p&gt;

&lt;p title="This is a paragraph"&gt;Hello&lt;/p&gt;

&lt;p&gt;*&lt;em&gt;href *&lt;/em&gt;– Specifies the URL or destination of a link. It is mainly used with the &lt;a&gt; tag.&lt;br&gt;
*&lt;em&gt;Example:&lt;br&gt;
*&lt;/em&gt;&lt;br&gt;
&lt;/a&gt;&lt;a href="https://example.com" rel="noopener noreferrer"&gt;Visit&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;*&lt;em&gt;src *&lt;/em&gt;– Specifies the source location of an image, video, or other media files. It is mainly used with tags like &lt;a href="" class="article-body-image-wrapper"&gt;&lt;img&gt;&lt;/a&gt;, , and .&lt;br&gt;
*&lt;em&gt;Example:&lt;br&gt;
*&lt;/em&gt;&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/image.jpg" 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/image.jpg" alt="Picture" width="800" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>HTML LIST</title>
      <dc:creator>Narmatha</dc:creator>
      <pubDate>Thu, 16 Jul 2026 14:03:30 +0000</pubDate>
      <link>https://dev.to/narmathachandra/html-list-4io3</link>
      <guid>https://dev.to/narmathachandra/html-list-4io3</guid>
      <description>&lt;p&gt;*&lt;em&gt;HTML List&lt;br&gt;
*&lt;/em&gt;&lt;br&gt;
An HTML list is used to display a group of related items in an organized and easy-to-read format on a web page. Lists help present information clearly using numbers, bullets, or descriptions.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Types of HTML Lists&lt;/strong&gt;&lt;br&gt;
__&lt;br&gt;
Ordered List (&lt;/p&gt;
&lt;ol&gt;):
Displays items in a numbered or lettered order.
Used when the order of items is important.

&lt;p&gt;Unordered List (&lt;/p&gt;
&lt;ul&gt;):
Displays items with bullet points.
Used when the order of items is not important.

&lt;p&gt;Description List (&lt;/p&gt;
&lt;dl&gt;):&lt;br&gt;
Displays terms and their descriptions.&lt;br&gt;
Uses &lt;dt&gt; for the term and &lt;/dt&gt;
&lt;dd&gt; for the description.

&lt;p&gt;*&lt;em&gt;SIMPLE EXAMPLES FOR OL,UL,DL&lt;br&gt;
*&lt;/em&gt;&lt;br&gt;
Example&lt;/p&gt;

&lt;ol&gt;
  &lt;li&gt;HTML&lt;/li&gt;
  &lt;li&gt;CSS&lt;/li&gt;
&lt;/ol&gt;

&lt;ul&gt;
  &lt;li&gt;Apple&lt;/li&gt;
  &lt;li&gt;Banana&lt;/li&gt;
&lt;/ul&gt;

&lt;dl&gt;
  &lt;dt&gt;HTML&lt;/dt&gt;
  &lt;dd&gt;HyperText Markup Language&lt;/dd&gt;
&lt;/dl&gt;


&lt;/dd&gt;
&lt;/dl&gt;
&lt;/ul&gt;
&lt;/ol&gt;

</description>
    </item>
    <item>
      <title>FLEXBOX IN CSS</title>
      <dc:creator>Narmatha</dc:creator>
      <pubDate>Thu, 16 Jul 2026 13:52:25 +0000</pubDate>
      <link>https://dev.to/narmathachandra/flexbox-in-css-3626</link>
      <guid>https://dev.to/narmathachandra/flexbox-in-css-3626</guid>
      <description>&lt;p&gt;WHAT IS FLEXBOX IN CSS ?&lt;/p&gt;

&lt;p&gt;CSS Flexbox (Flexible Box Layout) is a CSS layout system designed to make it easy to arrange, align, and distribute space between items inside a container, even when their sizes are unknown or change dynamically.&lt;/p&gt;

&lt;p&gt;HOW FLEXBOX WORKS&lt;/p&gt;

&lt;p&gt;Flexbox has two main parts:&lt;/p&gt;

&lt;p&gt;Flex container: The parent element with display: flex.&lt;br&gt;
Flex items: The direct children inside the flex container.&lt;/p&gt;

&lt;p&gt;PROPERTIES OF FLEXBOX IN CSS&lt;/p&gt;

&lt;p&gt;Container properties&lt;br&gt;
Property    Purpose&lt;br&gt;
display: flex   Enables Flexbox&lt;br&gt;
flex-direction  Row or column layout&lt;br&gt;
justify-content Aligns items along the main axis&lt;br&gt;
align-items Aligns items along the cross axis&lt;br&gt;
flex-wrap   Allows wrapping&lt;br&gt;
gap Adds space between items&lt;/p&gt;

&lt;p&gt;Example:&lt;/p&gt;

&lt;p&gt;.container {&lt;br&gt;
    display: flex;&lt;br&gt;
    flex-direction: row;&lt;br&gt;
    justify-content: center;&lt;br&gt;
    align-items: center;&lt;br&gt;
    gap: 20px;&lt;br&gt;
}&lt;br&gt;
Item properties&lt;br&gt;
Property    Purpose&lt;br&gt;
flex    Controls how an item grows or shrinks&lt;br&gt;
flex-grow   Allows an item to grow&lt;br&gt;
flex-shrink Allows an item to shrink&lt;br&gt;
flex-basis  Sets the initial size&lt;br&gt;
align-self  Overrides alignment for a single item&lt;/p&gt;

&lt;p&gt;Example:&lt;/p&gt;

&lt;p&gt;.item {&lt;br&gt;
    flex: 1;&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;.big-item {&lt;br&gt;
    flex: 2;&lt;br&gt;
}&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>css</category>
      <category>frontend</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
