<?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: Mahbuba Sultana</title>
    <description>The latest articles on DEV Community by Mahbuba Sultana (@mahbuba_sultana_).</description>
    <link>https://dev.to/mahbuba_sultana_</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%2F4058931%2F97d3b173-e744-4018-8f24-5371515e4223.png</url>
      <title>DEV Community: Mahbuba Sultana</title>
      <link>https://dev.to/mahbuba_sultana_</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mahbuba_sultana_"/>
    <language>en</language>
    <item>
      <title>Ilish Polao: Bringing My Ultimate Comfort Food to Life with Pure CSS</title>
      <dc:creator>Mahbuba Sultana</dc:creator>
      <pubDate>Tue, 04 Aug 2026 15:31:04 +0000</pubDate>
      <link>https://dev.to/mahbuba_sultana_/ilish-polao-bringing-my-ultimate-comfort-food-to-life-with-pure-css-4fi2</link>
      <guid>https://dev.to/mahbuba_sultana_/ilish-polao-bringing-my-ultimate-comfort-food-to-life-with-pure-css-4fi2</guid>
      <description>&lt;p&gt;This is my official entry for the Frontend Challenge - Comfort Food Edition under the CSS Art category.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;Inspiration&lt;/em&gt;&lt;/strong&gt; 🍚🐟&lt;br&gt;
When thinking about "comfort food," I didn’t want to pick a generic burger or pizza. I wanted to build something tied directly to home and my culture: Ilish Polao (Hilsha fish cooked with fragrant rice).&lt;/p&gt;

&lt;p&gt;Hilsha is the national fish of Bangladesh, and Ilish Polao—paired with a side of spicy-sweet tomato chutney—is the ultimate comfort meal in our house. Translating a dish loaded with personal memory into raw CSS felt like the perfect way to combine culture with code.&lt;/p&gt;

&lt;p&gt;Demo&lt;br&gt;
&lt;/p&gt;
&lt;div class="crayons-card c-embed text-styles text-styles--secondary"&gt;
    &lt;div class="c-embed__content"&gt;
      &lt;div class="c-embed__body flex items-center justify-between"&gt;
        &lt;a href="https://mahbubasultanaety.github.io/hilsha-polao/" rel="noopener noreferrer" class="c-link fw-bold flex items-center"&gt;
          &lt;span class="mr-2"&gt;mahbubasultanaety.github.io&lt;/span&gt;
          

        &lt;/a&gt;
      &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;


&lt;p&gt;GitHub Repository: &lt;/p&gt;
&lt;div class="ltag-github-readme-tag"&gt;
  &lt;div class="readme-overview"&gt;
    &lt;h2&gt;
      &lt;img src="https://assets.dev.to/assets/github-logo-5a155e1f9a670af7944dd5e12375bc76ed542ea80224905ecaf878b9157cdefc.svg" alt="GitHub logo"&gt;
      &lt;a href="https://github.com/MahbubaSultanaEty" rel="noopener noreferrer"&gt;
        MahbubaSultanaEty
      &lt;/a&gt; / &lt;a href="https://github.com/MahbubaSultanaEty/hilsha-polao" rel="noopener noreferrer"&gt;
        hilsha-polao
      &lt;/a&gt;
    &lt;/h2&gt;
    &lt;h3&gt;
      
    &lt;/h3&gt;
  &lt;/div&gt;
&lt;/div&gt;


&lt;p&gt;&lt;strong&gt;How I Built It&lt;/strong&gt;&lt;br&gt;
Instead of relying on SVGs or background images, every visual element in this piece is built from scratch with HTML elements and pure CSS styling.&lt;/p&gt;

&lt;p&gt;Here is a quick breakdown of what went into the scene:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Fish-Shaped Platter:&lt;br&gt;
Built using layered border-radius curves and subtle box-shadows to mimic ceramic depth.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;The Polao Mound:&lt;br&gt;
Formed using rounded CSS containers with layered gradient textures.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Scattered Rice Grains: &lt;br&gt;
Instead of hardcoding dozens of &lt;/p&gt; tags in HTML, I used a tiny JS script to generate and randomly position rice grains over the mound so the texture feels natural rather than grid-like.
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;The Hilsha Piece:&lt;br&gt;
Crafted with CSS clip-paths and custom border geometries to get the signature cut and inner texture right.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Animated Steam:&lt;br&gt;
CSS keyframe animations controlling opacity and vertical translate transforms to give the food a hot, fresh feel.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Garnishes &amp;amp; Sides:&lt;br&gt;
Added cinnamon sticks, bay leaves, green chilies, and a small side bowl of tomato chutney to complete the plate.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;The Sprinkle of Javascript: Rice Generation&lt;/strong&gt;&lt;br&gt;
Hardcoding hundreds of rice grains in static HTML felt redundant. So I used the minimal &lt;code&gt;for loop&lt;/code&gt; JS approach to scatter them:&lt;/p&gt;

&lt;p&gt;This tiny bit of scripting saved me time and made the plate look organic every single render.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Takeaways&lt;/strong&gt;&lt;br&gt;
Building CSS art always forces you to think differently about web layout tools. border-radius, clip-path, and CSS animations aren't just for UI cards and buttons—they're fully capable illustration tools when pushed a bit.&lt;/p&gt;

&lt;p&gt;Would love to hear what you think of the dish in the comments! What's your go-to comfort food you'd try rendering in CSS?&lt;/p&gt;

</description>
      <category>frontendchallenge</category>
      <category>devchallenge</category>
      <category>css</category>
      <category>frontend</category>
    </item>
    <item>
      <title>The Little Flower That Brought Me Back to Coding</title>
      <dc:creator>Mahbuba Sultana</dc:creator>
      <pubDate>Sun, 02 Aug 2026 10:50:44 +0000</pubDate>
      <link>https://dev.to/mahbuba_sultana_/the-little-flower-that-brought-me-back-to-coding-2bn9</link>
      <guid>https://dev.to/mahbuba_sultana_/the-little-flower-that-brought-me-back-to-coding-2bn9</guid>
      <description>&lt;h3&gt;
  
  
  How "Shiuli" became my favorite flower
&lt;/h3&gt;

&lt;p&gt;&lt;code&gt;*The Small Idea That Started My Coding Journey*&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;I never thought a small design idea would be the reason I fell in love with code.&lt;/p&gt;

&lt;p&gt;Before this moment, I had already tried stepping into programming. A relative introduced me to it, and like many beginners, I started watching free HTML and CSS tutorials on YouTube.&lt;/p&gt;

&lt;p&gt;But honestly? &lt;strong&gt;Nothing clicked.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I could understand the syntax, but I couldn't connect it with anything real. Without practical implementation or a clear learning path, coding felt like blind memorization. &lt;/p&gt;

&lt;p&gt;Slowly, I started believing that maybe coding just wasn't for me.&lt;/p&gt;




&lt;h2&gt;
  
  
  📸 The Spark of Curiosity
&lt;/h2&gt;

&lt;p&gt;Fast forward to &lt;strong&gt;September 2025&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;I’ve always loved photography. For me, capturing moments isn't just about taking pictures—it’s about observing small details, noticing things others might overlook, and finding the story behind them.&lt;/p&gt;

&lt;p&gt;While looking through one of my photos of &lt;strong&gt;Shiuli flowers&lt;/strong&gt;, a creative idea popped into my head: &lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;What if I replaced the middle "O" in the word *&lt;/em&gt;"October"** with a single Shiuli flower?*&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;It was a simple concept, but I wanted to bring my imagination to life.&lt;/p&gt;

&lt;p&gt;I asked ChatGPT how to edit it, but it couldn't quite capture my exact vision. When I asked how I could build it myself, it introduced me to image editing concepts and—more importantly—&lt;strong&gt;the power of code&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;That was the moment everything changed. For the first time, I wasn't just consuming content—I was genuinely curious about &lt;em&gt;how to build something&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;I asked a simple question:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;"Is there a way for someone with a completely non-technical background to learn coding through real implementation, quizzes, and hands-on tasks?"&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The answer was a resounding &lt;strong&gt;yes&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  💡 Realizing What Coding Really Is
&lt;/h2&gt;

&lt;p&gt;I quickly discovered that programming isn't about memorizing rigid syntax. It’s about:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;🎨 &lt;strong&gt;Creating&lt;/strong&gt; things from scratch&lt;/li&gt;
&lt;li&gt;🧪 &lt;strong&gt;Experimenting&lt;/strong&gt; with new ideas&lt;/li&gt;
&lt;li&gt;🧩 &lt;strong&gt;Solving problems&lt;/strong&gt; step-by-step&lt;/li&gt;
&lt;li&gt;✨ &lt;strong&gt;Turning imagination into reality&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That small spark of curiosity led me to pick my first structured learning platform and take my real first step into web development. &lt;/p&gt;

&lt;p&gt;A simple Shiuli flower became more than just a favorite flower—it became a symbol of my curiosity, creativity, and the start of my developer journey. 🌼&lt;/p&gt;




&lt;h2&gt;
  
  
  🛠️ Turning the Idea Into Reality
&lt;/h2&gt;

&lt;p&gt;Fast forward to August 2026: &lt;strong&gt;I built it!&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;I recently recreated that exact concept using &lt;strong&gt;HTML and CSS&lt;/strong&gt;. I built a responsive webpage where the Shiuli flower replaces the middle "O" in October—exactly as I imagined it back then.&lt;/p&gt;

&lt;p&gt;You can check out the project here:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;🌼 &lt;strong&gt;Live Demo:&lt;/strong&gt; &lt;a href="https://mahbubasultanaety.github.io/shiuly-story/" rel="noopener noreferrer"&gt;mahbubasultanaety.github.io/shiuly-story&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;💻 &lt;strong&gt;Source Code:&lt;/strong&gt; &lt;a href="https://github.com/MahbubaSultanaEty/shiuly-story" rel="noopener noreferrer"&gt;GitHub Repository&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;em&gt;If you've ever felt stuck or wondered if coding is right for you, sometimes all it takes is one small personal project to make it all click. What was the spark that got you into coding? Let me know in the comments!&lt;/em&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>learning</category>
      <category>career</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
