<?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>Bootstrap</title>
      <dc:creator>Narmatha</dc:creator>
      <pubDate>Mon, 03 Aug 2026 05:42:24 +0000</pubDate>
      <link>https://dev.to/narmathachandra/bootstrap-2fbg</link>
      <guid>https://dev.to/narmathachandra/bootstrap-2fbg</guid>
      <description>&lt;p&gt;*&lt;em&gt;What is Bootstrap?&lt;br&gt;
*&lt;/em&gt;&lt;br&gt;
Bootstrap is a free, open-source CSS framework that helps developers build responsive and attractive websites quickly. It also includes JavaScript components for common UI elements.&lt;/p&gt;

&lt;p&gt;Instead of writing all your CSS from scratch, Bootstrap provides ready-made styles and components.&lt;/p&gt;

&lt;p&gt;For example, instead of creating a button style yourself, you can write:&lt;/p&gt;

&lt;p&gt;Click Me&lt;/p&gt;

&lt;p&gt;Bootstrap automatically makes it look like a modern button.&lt;/p&gt;

&lt;p&gt;*&lt;em&gt;How does Bootstrap help?&lt;br&gt;
*&lt;/em&gt;&lt;br&gt;
Bootstrap saves time and makes web development easier in several ways:&lt;/p&gt;

&lt;p&gt;Responsive design: Websites automatically adjust to phones, tablets, and desktops using Bootstrap's grid system.&lt;/p&gt;

&lt;p&gt;Pre-built components: Includes buttons, forms, navigation bars, cards, modals, alerts, tables, and more.&lt;/p&gt;

&lt;p&gt;Consistent design: Your pages have a clean and professional appearance without extensive custom CSS.&lt;/p&gt;

&lt;p&gt;Faster development: You can build interfaces much more quickly by using Bootstrap's classes.&lt;/p&gt;

&lt;p&gt;Cross-browser compatibility: Bootstrap is designed to work well across modern web browsers.&lt;br&gt;
Example&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Without Bootstrap:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Submit&lt;/p&gt;

&lt;p&gt;You would need to write CSS:&lt;/p&gt;

&lt;p&gt;button {&lt;br&gt;
    background: blue;&lt;br&gt;
    color: white;&lt;br&gt;
    padding: 10px 20px;&lt;br&gt;
    border: none;&lt;br&gt;
    border-radius: 5px;&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;With Bootstrap:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Submit&lt;/p&gt;

&lt;p&gt;No extra CSS is needed for the basic styling.&lt;/p&gt;

&lt;p&gt;Bootstrap Grid System&lt;/p&gt;

&lt;p&gt;Bootstrap uses a 12-column grid to create responsive layouts.&lt;/p&gt;

&lt;p&gt;*&lt;em&gt;Example:&lt;br&gt;
*&lt;/em&gt;&lt;/p&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Left
Right
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;p&gt;On medium and larger screens, each column takes half the width. On smaller screens, they stack automatically.&lt;/p&gt;

&lt;p&gt;*&lt;em&gt;Common Bootstrap Components&lt;br&gt;
*&lt;/em&gt;&lt;br&gt;
Some of the most commonly used components are:&lt;/p&gt;

&lt;p&gt;Buttons&lt;br&gt;
Navigation bars (Navbar)&lt;br&gt;
Forms&lt;br&gt;
Cards&lt;br&gt;
Tables&lt;br&gt;
Alerts&lt;br&gt;
Badges&lt;br&gt;
Modals (pop-up dialogs)&lt;br&gt;
Carousels (image sliders)&lt;br&gt;
Dropdown menus&lt;/p&gt;

</description>
      <category>css</category>
      <category>frontend</category>
      <category>ui</category>
      <category>webdev</category>
    </item>
    <item>
      <title>CSS POSITIONING</title>
      <dc:creator>Narmatha</dc:creator>
      <pubDate>Tue, 28 Jul 2026 08:10:19 +0000</pubDate>
      <link>https://dev.to/narmathachandra/css-positioning-2402</link>
      <guid>https://dev.to/narmathachandra/css-positioning-2402</guid>
      <description>&lt;p&gt;&lt;strong&gt;What is CSS Position?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;-CSS position is a property that tells the browser how and where to place an HTML element on a webpage.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Simple definition:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The position property controls the location of an element on the webpage.&lt;/p&gt;

&lt;p&gt;*&lt;em&gt;Types of CSS Position&lt;br&gt;
*&lt;/em&gt;&lt;br&gt;
There are 5 types of CSS positioning:&lt;/p&gt;

&lt;p&gt;1.static&lt;br&gt;
2.relative&lt;br&gt;
3.absolute&lt;br&gt;
4.fixed&lt;br&gt;
5.sticky&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. position: relative&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The element starts in its normal position.&lt;/p&gt;

&lt;p&gt;Then you can move it using top, left, right, or bottom.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Example&lt;/strong&gt;&lt;br&gt;
.box {&lt;br&gt;
    position: relative;&lt;br&gt;
    left: 20px;&lt;br&gt;
}&lt;br&gt;
&lt;strong&gt;How it works&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Before:&lt;/p&gt;

&lt;p&gt;[BOX]&lt;/p&gt;

&lt;p&gt;After:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; [BOX]
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;The box moves 20 pixels to the right, but its original space is still kept.&lt;/p&gt;

&lt;p&gt;Use&lt;br&gt;
Small adjustments&lt;br&gt;
Creating a parent for absolutely positioned elements&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. position: absolute&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The element is removed from the normal layout.&lt;/p&gt;

&lt;p&gt;It is placed relative to its nearest parent that has a position other than static.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Example&lt;/strong&gt;&lt;br&gt;
.parent {&lt;br&gt;
    position: relative;&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;.box {&lt;br&gt;
    position: absolute;&lt;br&gt;
    top: 20px;&lt;br&gt;
    right: 20px;&lt;br&gt;
}&lt;br&gt;
&lt;strong&gt;HOW ITS WORKS&lt;/strong&gt;&lt;br&gt;
+------------------+&lt;br&gt;
|             BOX  |&lt;br&gt;
|                  |&lt;br&gt;
|                  |&lt;br&gt;
+------------------+&lt;/p&gt;

&lt;p&gt;The box is placed exactly where you tell it.&lt;/p&gt;

&lt;p&gt;Use&lt;br&gt;
Badges&lt;br&gt;
Popups&lt;br&gt;
Icons&lt;br&gt;
Labels on images&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3.position: sticky&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The element behaves like relative at first.&lt;/p&gt;

&lt;p&gt;When you scroll to it, it sticks to the top (or another specified position).&lt;/p&gt;

&lt;p&gt;header {&lt;br&gt;
    position: sticky;&lt;br&gt;
    top: 0;&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Before scrolling:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Header&lt;/p&gt;

&lt;p&gt;Content&lt;/p&gt;

&lt;p&gt;*&lt;em&gt;After scrolling:&lt;br&gt;
*&lt;/em&gt;&lt;br&gt;
Header  ← stays at the top&lt;/p&gt;

&lt;p&gt;Content keeps moving&lt;br&gt;
Use when:&lt;br&gt;
Navigation bars&lt;br&gt;
Table headers&lt;br&gt;
Side menus&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Easy Way to Remember&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;relative - Move a little from the normal position.&lt;br&gt;
absolute - Place the element exactly where you want inside its parent.&lt;br&gt;
sticky   - Move normally, then stick to the top when scrolling.&lt;/p&gt;

&lt;p&gt;**Real-Life Example&lt;/p&gt;

&lt;p&gt;**Imagine a classroom:&lt;br&gt;
Relative → One student slides their chair a little but keeps their place.&lt;br&gt;
Absolute → A teacher hangs a poster at a specific spot on the wall.&lt;br&gt;
Sticky → A notice board scrolls with the page until it reaches the top, then it stays visible&lt;/p&gt;

</description>
      <category>css</category>
      <category>frontend</category>
      <category>webdev</category>
    </item>
    <item>
      <title>TOSS CONFERENCE DAY-2 LEARN</title>
      <dc:creator>Narmatha</dc:creator>
      <pubDate>Sun, 26 Jul 2026 18:10:28 +0000</pubDate>
      <link>https://dev.to/narmathachandra/toss-conference-day-2-learn-3di0</link>
      <guid>https://dev.to/narmathachandra/toss-conference-day-2-learn-3di0</guid>
      <description>&lt;p&gt;WHAT IS OPENTELEMETRY?&lt;br&gt;
OpenTelemetry (OTel) is an open-source observability framework that helps you collect, process, and export telemetry data from your applications and infrastructure. It is a project of the Cloud Native Computing Foundation.&lt;/p&gt;

&lt;p&gt;SIGNAL OF OPENTELEMETRY&lt;/p&gt;

&lt;p&gt;1.Traces&lt;/p&gt;

&lt;p&gt;Show the path of a request through multiple services.&lt;br&gt;
Help you identify where latency or failures occur.&lt;/p&gt;

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

&lt;p&gt;User Request&lt;br&gt;
    │&lt;br&gt;
    ▼&lt;br&gt;
API Gateway&lt;br&gt;
    │&lt;br&gt;
    ▼&lt;br&gt;
Auth Service&lt;br&gt;
    │&lt;br&gt;
    ▼&lt;br&gt;
Payment Service&lt;br&gt;
    │&lt;br&gt;
    ▼&lt;br&gt;
Database&lt;/p&gt;

&lt;p&gt;Each step is a span, and together they form a trace.&lt;/p&gt;

&lt;p&gt;2.Metrics&lt;/p&gt;

&lt;p&gt;Numeric measurements over time.&lt;br&gt;
Examples:&lt;br&gt;
CPU usage&lt;br&gt;
Memory usage&lt;br&gt;
Request rate&lt;br&gt;
Error count&lt;br&gt;
Response time&lt;/p&gt;

&lt;p&gt;3.Logs&lt;/p&gt;

&lt;p&gt;Timestamped records of events.&lt;/p&gt;

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

&lt;p&gt;2026-07-25 10:15:23 ERROR Payment failed: Timeout&lt;/p&gt;

&lt;p&gt;KEY PRPPERITIES OF OPENTELEMETRY:&lt;/p&gt;

&lt;p&gt;1.Vendor-Neutral&lt;br&gt;
Works with many observability platforms (such as Prometheus, Grafana, Jaeger, Datadog, and Splunk).&lt;br&gt;
Avoids vendor lock-in.&lt;/p&gt;

&lt;p&gt;2.Open Source&lt;br&gt;
Developed under the Cloud Native Computing Foundation.&lt;br&gt;
Free to use and supported by a large community.&lt;/p&gt;

&lt;p&gt;3.Unified Observability&lt;br&gt;
Collects all three types of telemetry:&lt;br&gt;
.Traces&lt;br&gt;
.Metrics&lt;br&gt;
.Logs&lt;/p&gt;

&lt;p&gt;4.Automatic and Manual Instrumentation&lt;br&gt;
Supports automatic instrumentation with little or no code changes.&lt;br&gt;
Allows manual instrumentation for custom business logic.&lt;/p&gt;

&lt;p&gt;5.Multi-Language Support&lt;br&gt;
Supports many programming languages, including:&lt;br&gt;
Java&lt;br&gt;
Python&lt;br&gt;
Go&lt;br&gt;
.NET&lt;br&gt;
Node.js&lt;br&gt;
C++&lt;br&gt;
PHP&lt;br&gt;
Ruby&lt;br&gt;
Rust&lt;/p&gt;

&lt;p&gt;6.Context Propagation&lt;br&gt;
Preserves request context across multiple services.&lt;br&gt;
Makes it possible to trace a request end-to-end in distributed systems.&lt;/p&gt;

&lt;p&gt;7.Extensible and Modular&lt;br&gt;
Components can be customized or extended.&lt;br&gt;
Supports custom exporters, processors, and receivers.&lt;/p&gt;

&lt;p&gt;8.OpenTelemetry Collector&lt;br&gt;
A standalone service that:&lt;br&gt;
Receives telemetry&lt;br&gt;
Processes and filters data&lt;br&gt;
Batches data&lt;br&gt;
Exports it to one or more monitoring backends&lt;/p&gt;

&lt;p&gt;9.Standardized APIs and SDKs&lt;br&gt;
Provides consistent APIs and SDKs across supported languages.&lt;br&gt;
Simplifies instrumentation and improves portability.&lt;/p&gt;

&lt;p&gt;10.High Scalability&lt;br&gt;
Suitable for cloud-native applications, microservices, containers, and large distributed systems.&lt;br&gt;
Handles telemetry from many services efficiently&lt;/p&gt;

</description>
      <category>cloud</category>
      <category>devops</category>
      <category>monitoring</category>
      <category>opensource</category>
    </item>
    <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>
