<?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: ARAVIND S</title>
    <description>The latest articles on DEV Community by ARAVIND S (@sportivearavind).</description>
    <link>https://dev.to/sportivearavind</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%2F1287381%2F35350e7d-510d-4521-a5dc-858d09f16dad.jpeg</url>
      <title>DEV Community: ARAVIND S</title>
      <link>https://dev.to/sportivearavind</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sportivearavind"/>
    <language>en</language>
    <item>
      <title>FreeCodeCamp or The Odin Project: Which One Will Get You Hired Faster?</title>
      <dc:creator>ARAVIND S</dc:creator>
      <pubDate>Wed, 28 Aug 2024 10:28:48 +0000</pubDate>
      <link>https://dev.to/sportivearavind/freecodecamp-or-the-odin-project-which-one-will-get-you-hired-faster-1c7n</link>
      <guid>https://dev.to/sportivearavind/freecodecamp-or-the-odin-project-which-one-will-get-you-hired-faster-1c7n</guid>
      <description>&lt;div class="crayons-card c-embed text-styles text-styles--secondary"&gt;
      &lt;div class="c-embed__cover"&gt;
        &lt;a href="https://justwritecode.in/freecodecamp-or-the-odin-project/" class="c-link s:max-w-50 align-middle" rel="noopener noreferrer"&gt;
          &lt;img alt="" src="https://res.cloudinary.com/practicaldev/image/fetch/s--JsdVeGdW--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://justwritecode.in/wp-content/uploads/2024/08/Freecodecamp-vs-the-odinproject.webp" height="450" class="m-0" width="800"&gt;
        &lt;/a&gt;
      &lt;/div&gt;
    &lt;div class="c-embed__body"&gt;
      &lt;h2 class="fs-xl lh-tight"&gt;
        &lt;a href="https://justwritecode.in/freecodecamp-or-the-odin-project/" rel="noopener noreferrer" class="c-link"&gt;
          FreeCodeCamp or The Odin Project: Which One Will Get You Hired Faster? - justwritecode.in
        &lt;/a&gt;
      &lt;/h2&gt;
        &lt;p class="truncate-at-3"&gt;
          FreeCodeCamp or The Odin Project, and find out which coding platform is the best fit for your career goals.
        &lt;/p&gt;
      &lt;div class="color-secondary fs-s flex items-center"&gt;
          &lt;img alt="favicon" class="c-embed__favicon m-0 mr-2 radius-0" src="https://res.cloudinary.com/practicaldev/image/fetch/s--Nq7Lsckj--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://justwritecode.in/wp-content/uploads/2024/08/cropped-a-simple-modern-and-easily-recognizable-favicon-fo-00H7UXsYSDOcA5wuKuNWDw-k6IVuywnRV2cqxVYvx9hhQ-32x32.jpeg" width="32" height="32"&gt;
        justwritecode.in
      &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;


</description>
    </item>
    <item>
      <title>CSS Accordion with Html &amp; Css | no Js used!</title>
      <dc:creator>ARAVIND S</dc:creator>
      <pubDate>Thu, 15 Aug 2024 08:22:40 +0000</pubDate>
      <link>https://dev.to/sportivearavind/css-accordion-with-html-css-no-js-used-1c3m</link>
      <guid>https://dev.to/sportivearavind/css-accordion-with-html-css-no-js-used-1c3m</guid>
      <description>&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/lqxh-7Fh0Go"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;Accordions are a popular UI component used to display content in a compact and organized manner. They allow users to expand and collapse sections of content, providing a cleaner interface. In this article, we’ll explore how to create a simple yet effective accordion using only HTML and CSS. No JavaScript is required!&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Use a CSS Accordion?
&lt;/h2&gt;

&lt;p&gt;Using CSS for creating an accordion has several benefits:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Simplicity&lt;/strong&gt;: No need to include additional JavaScript files.&lt;br&gt;
&lt;strong&gt;Performance&lt;/strong&gt;: Pure CSS accordions are lightweight, leading to faster load times.&lt;br&gt;
&lt;strong&gt;Accessibility&lt;/strong&gt;: Properly coded CSS accordions are accessible and can be navigated with a keyboard.&lt;/p&gt;
&lt;h2&gt;
  
  
  The HTML Structure
&lt;/h2&gt;

&lt;p&gt;We start with a simple HTML structure. Below is the markup for our accordion.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html lang="en"&amp;gt;
&amp;lt;head&amp;gt;
    &amp;lt;meta charset="UTF-8"&amp;gt;
    &amp;lt;meta name="viewport" content="width=device-width, initial-scale=1.0"&amp;gt;
    &amp;lt;title&amp;gt;Accordion&amp;lt;/title&amp;gt;
    &amp;lt;link rel="stylesheet" href="style.css"&amp;gt;
    &amp;lt;!-- Syne Mono google font --&amp;gt;
    &amp;lt;link rel="preconnect" href="https://fonts.googleapis.com"&amp;gt;
    &amp;lt;link rel="preconnect" href="https://fonts.gstatic.com" crossorigin&amp;gt;
    &amp;lt;link href="https://fonts.googleapis.com/css2?family=Syne+Mono&amp;amp;display=swap" rel="stylesheet"&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
    &amp;lt;div class="accordion-container"&amp;gt;
        &amp;lt;h1 class="heading"&amp;gt;CSS Accordion&amp;lt;/h1&amp;gt;
        &amp;lt;div class="accordion"&amp;gt;
            &amp;lt;details&amp;gt;
                &amp;lt;summary&amp;gt;Is JS needed for this accordion?&amp;lt;/summary&amp;gt;
                &amp;lt;p&amp;gt;Only HTML and CSS are enough 😉&amp;lt;/p&amp;gt;
            &amp;lt;/details&amp;gt;
            &amp;lt;details&amp;gt;
                &amp;lt;summary&amp;gt;What Do I do?&amp;lt;/summary&amp;gt;
                &amp;lt;p&amp;gt;Mainly my job is to build websites that are responsive and dynamic.&amp;lt;/p&amp;gt;
            &amp;lt;/details&amp;gt;
            &amp;lt;details&amp;gt;
                &amp;lt;summary&amp;gt;What is my short-term goal?&amp;lt;/summary&amp;gt;
                &amp;lt;p&amp;gt;My short-term goal is to get placed in a product-based company as a frontend engineer.&amp;lt;/p&amp;gt;
            &amp;lt;/details&amp;gt;
            &amp;lt;details&amp;gt;
                &amp;lt;summary&amp;gt;How many professional certifications have you completed?&amp;lt;/summary&amp;gt;
                &amp;lt;p&amp;gt;I have completed two professional certifications, namely AWS Cloud Practitioner and Snowflake.&amp;lt;/p&amp;gt;
            &amp;lt;/details&amp;gt;
        &amp;lt;/div&amp;gt;
    &amp;lt;/div&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Understanding the HTML Structure
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Details and Summary Elements&lt;/strong&gt;: These HTML elements are key to creating the accordion effect. The  tag acts as the clickable header, and the content inside  expands or collapses when the user interacts with the summary.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Custom Fonts&lt;/strong&gt;: We’re using the “Syne Mono” font from Google Fonts, which gives a unique and modern look to our accordion.&lt;/p&gt;

&lt;h2&gt;
  
  
  The CSS Styling
&lt;/h2&gt;

&lt;p&gt;Now let’s dive into the CSS that styles our accordion.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.accordion-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #0f1c2e;
    font-family: "Syne Mono";
}

.heading{
    color: white;
    margin-bottom: 20px;
    font-size: 8em;
    letter-spacing: 5px;
}

.accordion{
    width: 700px;
    width: calc(100% - 20px); 
}

details{
    background-color: #cee8ff;
    margin-bottom: 10px;
    filter: drop-shadow(5px 5px 0px #0A0A0A);
}

details:hover{
    filter: drop-shadow(5px 5px 4px #0A0A0A);
}

details &amp;gt; summary{
    color: #142030;
    padding: 5px 10px;
    font-size: 2em;
    cursor: pointer;
}

details &amp;gt; p{
    padding: 5px 10px 10px 20px;
    color: #0f1c2e;
    font-size: 1.5em;
}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Breaking Down the CSS
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Global Styles&lt;/strong&gt;: We start by resetting the margin, padding, and box-sizing for all elements using the universal selector *. This ensures a consistent base for styling.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Accordion Container&lt;/strong&gt;: The .accordion-container class centers the accordion on the page using Flexbox. It also sets the background color and font family.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Heading Styling&lt;/strong&gt;: The .heading class styles the main heading, making it large, white, and spaced out.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Accordion Styling&lt;/strong&gt;:&lt;br&gt;
Width: The accordion’s width is set using a calc() function to ensure responsiveness, subtracting 20px from the total width.&lt;/p&gt;

&lt;p&gt;Background and Shadow: The details elements are styled with a background color and a drop shadow to give a 3D effect. The shadow becomes more prominent when the user hovers over each section.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Summary and Paragraph Styling&lt;/strong&gt;:&lt;/p&gt;

&lt;p&gt;Colors and Padding: The text color for the summary is set to a dark shade, and padding is added to give space around the content. The paragraph text within each detail is also styled for better readability.&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;Creating an accordion with just HTML and CSS is not only simple but also highly efficient. It’s a perfect example of how you can build interactive components without relying on JavaScript, which can lead to faster loading times and improved performance. Feel free to customize the styles and content to match your design needs!&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Creating a Stunning Image Grid Gallery with HTML and CSS</title>
      <dc:creator>ARAVIND S</dc:creator>
      <pubDate>Wed, 07 Aug 2024 06:43:37 +0000</pubDate>
      <link>https://dev.to/sportivearavind/creating-a-stunning-image-grid-gallery-with-html-and-css-5a10</link>
      <guid>https://dev.to/sportivearavind/creating-a-stunning-image-grid-gallery-with-html-and-css-5a10</guid>
      <description>&lt;p&gt;For video version of this article, watch this &lt;a href="https://youtu.be/BRMo5UGkPc0?si=JjI5ICJkBKJhYnBL" rel="noopener noreferrer"&gt;youtube video &lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In this tutorial, we will create a beautiful and responsive image grid gallery using HTML and CSS. This tutorial is perfect for beginners who want to understand the basics of CSS Grid and how to arrange images in a visually appealing layout. By the end of this tutorial, you’ll have a fully functional image gallery that you can use on your website or portfolio.&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 1: Setting Up the HTML
&lt;/h2&gt;

&lt;p&gt;First, we need to set up the basic HTML structure for our gallery. We’ll create a div with the class grid-container to hold our grid items, each containing an image.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html lang="en"&amp;gt;
&amp;lt;head&amp;gt;
    &amp;lt;meta charset="UTF-8"&amp;gt;
    &amp;lt;meta name="viewport" content="width=device-width, initial-scale=1.0"&amp;gt;
    &amp;lt;title&amp;gt;Grid Gallery&amp;lt;/title&amp;gt;
    &amp;lt;link rel="stylesheet" href="style.css"&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
    &amp;lt;div class="grid-container"&amp;gt;
        &amp;lt;div class="grid-item-1"&amp;gt;
            &amp;lt;img src="images/adult.avif" alt=""&amp;gt;
        &amp;lt;/div&amp;gt;
        &amp;lt;div class="grid-item-2"&amp;gt;
            &amp;lt;img src="images/boy.avif" alt=""&amp;gt;
        &amp;lt;/div&amp;gt;
        &amp;lt;div class="grid-item-3"&amp;gt;
            &amp;lt;img src="images/car.avif" alt=""&amp;gt;
        &amp;lt;/div&amp;gt;
        &amp;lt;div class="grid-item-4"&amp;gt;
            &amp;lt;img src="images/court.avif" alt=""&amp;gt;
        &amp;lt;/div&amp;gt;
        &amp;lt;div class="grid-item-5"&amp;gt;
            &amp;lt;img src="images/net.avif" alt=""&amp;gt;
        &amp;lt;/div&amp;gt;
        &amp;lt;div class="grid-item-6"&amp;gt;
            &amp;lt;img src="images/road.avif" alt=""&amp;gt;
        &amp;lt;/div&amp;gt;
        &amp;lt;div class="grid-item-7"&amp;gt;
            &amp;lt;img src="images/single cork.avif" alt=""&amp;gt;
        &amp;lt;/div&amp;gt;
        &amp;lt;div class="grid-item-8"&amp;gt;
            &amp;lt;img src="images/two boys.avif" alt=""&amp;gt;
        &amp;lt;/div&amp;gt;
        &amp;lt;div class="grid-item-9"&amp;gt;
            &amp;lt;img src="images/two cord.avif" alt=""&amp;gt;
        &amp;lt;/div&amp;gt;
        &amp;lt;div class="grid-item-10"&amp;gt;
            &amp;lt;img src="images/yellow cork.avif" alt=""&amp;gt;
        &amp;lt;/div&amp;gt;
    &amp;lt;/div&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Step 2: Adding Basic Styles with CSS
&lt;/h2&gt;

&lt;p&gt;Next, we need to add some basic CSS styles. We’ll start by resetting the margin, padding, and box-sizing for all elements to ensure consistent styling across different browsers.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: white;
    padding: 0.5rem 4rem;
}

img{
    display: block;
    width: 100%;
    height: 100%;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Step 3: Creating the Grid Layout
&lt;/h2&gt;

&lt;p&gt;Now, let’s create the grid layout for our gallery. We’ll use the CSS Grid layout module to define the structure of our grid container. The grid-template-columns and grid-template-rows properties will specify the number of columns and rows, while the grid-column-gap and grid-row-gap properties will add space between the grid items.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;.grid-container{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    height: 95vh;
    width: 80%;
    margin: auto;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Step 4: Placing Grid Items
&lt;/h2&gt;

&lt;p&gt;To place the grid items in specific positions within the grid, we use the grid-area property. This property allows us to define the starting and ending row and column for each grid item. Here's how we can position each image:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;.grid-item-1 { 
    grid-area: 3 / 4 / 5 / 5; 
}

.grid-item-2 { 
    grid-area: 4 / 3 / 5 / 4; 
}

.grid-item-3 { 
    grid-area: 1 / 4 / 3 / 6; 
}

.grid-item-4 { 
    grid-area: 1 / 2 / 2 / 3; 
}

.grid-item-5 { 
    grid-area: 3 / 5 / 5 / 6; 
}

.grid-item-6 { 
    grid-area: 2 / 1 / 5 / 3; 
}

.grid-item-7 { 
    grid-area: 1 / 1 / 2 / 2; 
}

.grid-item-8 { 
    grid-area: 3 / 3 / 4 / 4; 
}

.grid-item-9 { 
    grid-area: 2 / 3 / 3 / 4; 
}

.grid-item-10 { 
    grid-area: 1 / 3 / 2 / 4; 
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Final Result
&lt;/h2&gt;

&lt;p&gt;After adding all the HTML and CSS code, your image grid gallery should look something like this:&lt;/p&gt;

&lt;p&gt;You can now customize the gallery by adding your own images, adjusting the grid layout, or changing the spacing between the grid items. This tutorial provides a solid foundation for creating complex and visually appealing grid layouts using CSS Grid.&lt;/p&gt;

&lt;p&gt;Feel free to experiment with different configurations and explore the possibilities of CSS Grid. Happy coding!&lt;/p&gt;

</description>
      <category>css</category>
      <category>cssgrid</category>
      <category>gridgallery</category>
      <category>webdev</category>
    </item>
    <item>
      <title>CSS Positioning in under 4 minutes</title>
      <dc:creator>ARAVIND S</dc:creator>
      <pubDate>Sat, 03 Aug 2024 04:29:52 +0000</pubDate>
      <link>https://dev.to/sportivearavind/css-positioning-in-under-4-minutes-4208</link>
      <guid>https://dev.to/sportivearavind/css-positioning-in-under-4-minutes-4208</guid>
      <description>&lt;p&gt;If you have just started learning CSS or have yet to work much in CSS, you will find difficulty in positioning the element. To make your life easier, there are CSS positioning properties like Absolute, Relative, Static, Fixed, Sticky, and Inherit. In this post, we will learn the six CSS positioning properties and where to use them with some examples. If you need a video version of this post, refer to my YouTube video.&lt;/p&gt;

&lt;p&gt;Youtube Video Link - &lt;a href="https://youtu.be/7V0bbUKE3KQ?si=VaODQNs_rJJFlHli" rel="noopener noreferrer"&gt;https://youtu.be/7V0bbUKE3KQ?si=VaODQNs_rJJFlHli&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  1. Static
&lt;/h2&gt;

&lt;p&gt;By default, every HTML element has a static position. This means that elements stick to the normal page flow, and their placement is determined by the document's structure. The left, right, top, bottom, and z-index properties do not affect elements with a static position. Essentially, these elements behave as if the positional properties don't exist.&lt;/p&gt;

&lt;h2&gt;
  
  
  2. Relative
&lt;/h2&gt;

&lt;p&gt;An element with a relative position retains its original place in the document flow, just like a static element. However, unlike static positioning, the left, right, top, bottom, and z-index properties will have an effect. These properties "nudge" the element from its original position in the specified direction.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. Absolute
&lt;/h2&gt;

&lt;p&gt;An element with an absolute position is removed from the normal document flow. Other elements will behave as if the absolutely positioned element is not there. This allows for precise placement using the left, right, top, bottom, and z-index properties. The element is positioned relative to its nearest positioned ancestor (i.e., an ancestor element with a position other than static), or the initial containing block if no such ancestor exists.&lt;/p&gt;

&lt;h2&gt;
  
  
  4. Fixed
&lt;/h2&gt;

&lt;p&gt;An element with a fixed position is also removed from the document flow, similar to an absolutely positioned element. However, unlike absolute positioning, fixed positioning is relative to the viewport, not to any particular parent element. This means the element remains in the same place even when the page is scrolled, making it useful for creating persistent navigation bars or sticky headers.&lt;/p&gt;

&lt;h2&gt;
  
  
  5. Sticky
&lt;/h2&gt;

&lt;p&gt;The sticky positioning value combines aspects of relative and fixed positioning. An element with sticky positioning is treated like a relatively positioned element until the scroll location of the viewport reaches a specified threshold. At this point, it becomes fixed and stays in that position relative to the viewport until it is scrolled out of view.&lt;/p&gt;

&lt;h2&gt;
  
  
  6. Inherit
&lt;/h2&gt;

&lt;p&gt;The inherit value for the position property allows an element to inherit its position value from its parent. This can be useful when you want an element to follow the same positioning rules as its parent, especially in complex layouts where consistency is key.&lt;/p&gt;

&lt;p&gt;Conclusion&lt;br&gt;
Understanding CSS positioning is essential for crafting flexible and dynamic web layouts. By knowing how static, relative, absolute, fixed, sticky, and inherit work, you can better control the placement and behavior of elements on your web pages. Experiment with these positioning values to achieve the desired layout and functionality for your designs.&lt;/p&gt;

</description>
      <category>css</category>
      <category>csspositioning</category>
      <category>webdev</category>
      <category>web</category>
    </item>
    <item>
      <title>C Shape 7 box</title>
      <dc:creator>ARAVIND S</dc:creator>
      <pubDate>Wed, 26 Jun 2024 09:41:24 +0000</pubDate>
      <link>https://dev.to/sportivearavind/c-shape-7-box-5bbl</link>
      <guid>https://dev.to/sportivearavind/c-shape-7-box-5bbl</guid>
      <description>&lt;p&gt;Check out this Pen I made!&lt;/p&gt;

&lt;p&gt;&lt;iframe height="600" src="https://codepen.io/sportivearavind/embed/qBGJgNz?height=600&amp;amp;default-tab=result&amp;amp;embed-version=2"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

</description>
      <category>codepen</category>
    </item>
    <item>
      <title>Star Rating</title>
      <dc:creator>ARAVIND S</dc:creator>
      <pubDate>Wed, 26 Jun 2024 09:38:38 +0000</pubDate>
      <link>https://dev.to/sportivearavind/star-rating-57da</link>
      <guid>https://dev.to/sportivearavind/star-rating-57da</guid>
      <description>&lt;p&gt;Check out this Pen I made!&lt;/p&gt;

&lt;p&gt;&lt;iframe height="600" src="https://codepen.io/sportivearavind/embed/ExzddZJ?height=600&amp;amp;default-tab=result&amp;amp;embed-version=2"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

</description>
      <category>codepen</category>
    </item>
    <item>
      <title>Bishop on Chessboard</title>
      <dc:creator>ARAVIND S</dc:creator>
      <pubDate>Wed, 26 Jun 2024 09:37:09 +0000</pubDate>
      <link>https://dev.to/sportivearavind/bishop-on-chessboard-45p2</link>
      <guid>https://dev.to/sportivearavind/bishop-on-chessboard-45p2</guid>
      <description>&lt;p&gt;Check out this Pen I made!&lt;/p&gt;

&lt;p&gt;&lt;iframe height="600" src="https://codepen.io/sportivearavind/embed/qBGQrZx?height=600&amp;amp;default-tab=result&amp;amp;embed-version=2"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

</description>
      <category>codepen</category>
    </item>
  </channel>
</rss>
