<?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: Nikhil Bobade </title>
    <description>The latest articles on DEV Community by Nikhil Bobade  (@nikhil27b).</description>
    <link>https://dev.to/nikhil27b</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%2F481802%2Fff897af1-c333-4e04-8f08-d6d1356a1c14.jpeg</url>
      <title>DEV Community: Nikhil Bobade </title>
      <link>https://dev.to/nikhil27b</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/nikhil27b"/>
    <language>en</language>
    <item>
      <title>Try NoSQL, Get Started with MongoDB</title>
      <dc:creator>Nikhil Bobade </dc:creator>
      <pubDate>Thu, 18 Jul 2024 07:02:28 +0000</pubDate>
      <link>https://dev.to/nikhil27b/sql-is-dead-get-started-with-mongodb-4dc3</link>
      <guid>https://dev.to/nikhil27b/sql-is-dead-get-started-with-mongodb-4dc3</guid>
      <description>&lt;h3&gt;
  
  
  What is a MongoDB:
&lt;/h3&gt;

&lt;p&gt;MongoDB is a non-relational database, which means that data is stored as collections.&lt;/p&gt;

&lt;p&gt;MongoDB also supports BSON (Binary JSON), a binary-encoded form of JSON that allows for additional data types such as binary, decimal, object ID, and so on. &lt;/p&gt;

&lt;p&gt;MongoDB has its own query language, based on JSON and JavaScript grammar, for querying and MongoDB is a non-relational database, which means that data is stored as collections, with each document representing a record and each field representing a value. &lt;/p&gt;

&lt;h3&gt;
  
  
  Installation for MongoDB?
&lt;/h3&gt;

&lt;p&gt;1st Login to your mongoDB account after doing login create a new cluster for your database as per your requirements. also mongoDB offers free cluster for beginner’s if they want to learn mongoDB. :)&lt;/p&gt;

&lt;h4&gt;
  
  
  Installation  Steps:
&lt;/h4&gt;

&lt;p&gt;Package Manager Installation:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Update the package list: sudo apt update (for Debian-based systems) or equivalent.&lt;/li&gt;
&lt;li&gt;Install MongoDB: sudo apt install -y mongodb-org (for Debian-based systems) or equivalent command for other package managers.&lt;/li&gt;
&lt;li&gt;Start MongoDB service: sudo systemctl start mongod.&lt;/li&gt;
&lt;li&gt;Enable MongoDB to start on boot: sudo systemctl enable mongod.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Cloud Installation (MongoDB Atlas):&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Sign up or log in to MongoDB Atlas.&lt;/li&gt;
&lt;li&gt;Follow the guided steps to create a cluster.&lt;/li&gt;
&lt;li&gt;Configure security settings and connect your application.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Optionally, install MongoDB Compass or other management tools for easier database administration and visualization.&lt;/p&gt;

&lt;h3&gt;
  
  
  Basic CRUD in MongoDB?
&lt;/h3&gt;

&lt;p&gt;First, ensure MongoDB is installed and running. You can connect to MongoDB using the MongoDB shell or a MongoDB client such as MongoDB Compass.&lt;/p&gt;

&lt;p&gt;In MongoDB, databases and collections are created implicitly when data is first stored. To switch to a specific database or create one explicitly, use the following commands: (use mydatabase)&lt;/p&gt;

&lt;p&gt;To insert data into a collection (equivalent to a table in relational databases), use the insertOne() or insertMany() methods:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;// Insert a single document into a collection
db.users.insertOne({ name: "John Doe", age: 30, email: "john.doe@example.com" });

// Insert multiple documents into a collection
db.users.insertMany([
    { name: "Jane Smith", age: 25, email: "jane.smith@example.com" },
    { name: "Michael Johnson", age: 40, email: "michael.johnson@example.com" }
]);
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Read (Find Documents)&lt;br&gt;
To retrieve data from a collection, use the find() method with optional query criteria:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;// Find all documents in a collection
db.users.find();

// Find documents matching specific criteria (e.g., find users older than 35)
db.users.find({ age: { $gt: 35 } });

// Find a single document by its _id
db.users.findOne({ _id: ObjectId("insert-id-here") });
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Update (Update Documents)&lt;br&gt;
To update documents in a collection, use the updateOne() or updateMany() methods:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;// Update a single document matching a query
db.users.updateOne(
    { name: "John Doe" },
    { $set: { age: 31, email: "john.doe.updated@example.com" } }
);

// Update multiple documents matching a query
db.users.updateMany(
    { age: { $lt: 30 } },
    { $set: { status: "inactive" } }
);
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Delete (Delete Documents)&lt;br&gt;
To remove documents from a collection, use the deleteOne() or deleteMany() methods:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;// Delete a single document matching a query
db.users.deleteOne({ name: "John Doe" });

// Delete multiple documents matching a query
db.users.deleteMany({ status: "inactive" });

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

&lt;/div&gt;



&lt;h3&gt;
  
  
  Pros of using MongoDB:
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Suitable for unstructured and dynamic data, where the schema and relationships change over time.&lt;/li&gt;
&lt;li&gt;MongoDB provides greater simplicity and agility since it does not require a predefined schema, allowing for more flexible and expressive data models.&lt;/li&gt;
&lt;li&gt;Scalable and performant, it can easily manage massive amounts of different data and distribute it over several servers.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Thank You for reading this post for more like this follow to my account and let me know if you have a suggestions in comment section.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>javascript</category>
      <category>mongodb</category>
      <category>database</category>
    </item>
    <item>
      <title>Creating a Dynamic and User-Friendly Pagination System with HTML, CSS, and JavaScript</title>
      <dc:creator>Nikhil Bobade </dc:creator>
      <pubDate>Wed, 08 Feb 2023 14:09:10 +0000</pubDate>
      <link>https://dev.to/nikhil27b/creating-a-dynamic-and-user-friendly-pagination-system-with-html-css-and-javascript-3g5l</link>
      <guid>https://dev.to/nikhil27b/creating-a-dynamic-and-user-friendly-pagination-system-with-html-css-and-javascript-3g5l</guid>
      <description>&lt;p&gt;Pagination is a widely used technique for dividing a large set of data into smaller and more manageable chunks, making it easier for users to navigate and view the information they need. It's a common feature on websites, especially e-commerce sites, where products are displayed in a grid format and users can navigate through multiple pages to view more items. In this blog post, we will explore the basics of pagination, why it's important, and how to implement it in your web application using HTML, CSS, and JavaScript.&lt;/p&gt;

&lt;p&gt;To implement pagination in your web application, you will need to use HTML, CSS, and JavaScript. In the example code below, we will create a simple pagination system with five pages. The active page will be highlighted in blue, and users can navigate to the next or previous page using the arrow icons.&lt;/p&gt;

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

&lt;p&gt;In the CSS, we use flexbox to center the pagination links and add a blue background to the active page. We also use Font Awesome icons for the left and right arrows. In the JavaScript, we first get a reference to all the pagination links and set the current index to the active page. Then, we use a forEach loop to add a click event listener to each link, so that when a user clicks on a link, it becomes the active page.&lt;/p&gt;

&lt;p&gt;Finally, we add click event listeners to the left and right arrows to navigate to the previous or next page. When a user clicks on an arrow, the active class is removed from the current page and added to the new page.&lt;/p&gt;

</description>
      <category>vibecoding</category>
      <category>tooling</category>
      <category>productivity</category>
    </item>
    <item>
      <title>Image Animation Using HTML CSS &amp; GSAP</title>
      <dc:creator>Nikhil Bobade </dc:creator>
      <pubDate>Sun, 16 Jan 2022 13:04:53 +0000</pubDate>
      <link>https://dev.to/nikhil27b/image-animation-using-html-css-gsap-1659</link>
      <guid>https://dev.to/nikhil27b/image-animation-using-html-css-gsap-1659</guid>
      <description>&lt;p&gt;Hello Guys,&lt;/p&gt;

&lt;p&gt;Today I Created an Amazing Image Animation using HTML CSS &amp;amp; GSAP Animation. To animate the image I use the &lt;code&gt;GSAP.timeline()&lt;/code&gt; and &lt;code&gt;gsap.from()&lt;/code&gt; method to achieve this effect. If you had multiple images on your website then use for each method like me else use a direct timeline method.&lt;/p&gt;

&lt;p&gt;I hope you like this also comments about your thoughts. also For more content &lt;strong&gt;follow me on Instagram&lt;/strong&gt;  &lt;a href="https://www.instagram.com/developer_nikhil27/" rel="noopener noreferrer"&gt;@developer_nikhil27&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Thank you 🙂!&lt;/p&gt;

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

</description>
      <category>javascript</category>
      <category>html</category>
      <category>beginners</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Responsive Animated Login Form Using HTML CSS &amp; GSAP</title>
      <dc:creator>Nikhil Bobade </dc:creator>
      <pubDate>Sun, 05 Dec 2021 14:33:54 +0000</pubDate>
      <link>https://dev.to/nikhil27b/responsive-animated-login-form-using-html-css-gsap-14l6</link>
      <guid>https://dev.to/nikhil27b/responsive-animated-login-form-using-html-css-gsap-14l6</guid>
      <description>&lt;p&gt;Hello Guys,&lt;/p&gt;

&lt;p&gt;Today I Created an Animated Responsive Login Form using HTML CSS &amp;amp; GSAP For Animation. I hope you like this also comments about your thoughts. also For more content &lt;strong&gt;follow me on Instagram&lt;/strong&gt;  &lt;a href="https://www.instagram.com/developer_nikhil27/" rel="noopener noreferrer"&gt;@developer_nikhil27&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Thank you 🙂!&lt;/p&gt;

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

</description>
      <category>html</category>
      <category>css</category>
      <category>javascript</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Video Animation Using HTML &amp; GSAP</title>
      <dc:creator>Nikhil Bobade </dc:creator>
      <pubDate>Fri, 03 Dec 2021 15:35:16 +0000</pubDate>
      <link>https://dev.to/nikhil27b/video-animation-using-html-gsap-424d</link>
      <guid>https://dev.to/nikhil27b/video-animation-using-html-gsap-424d</guid>
      <description>&lt;p&gt;Hello Guys,&lt;/p&gt;

&lt;p&gt;Today I Created an Video Animation using HTML CSS &amp;amp; GSAP Animation. In this post I use simple video and GSAP for increase video width on scroll and some other code to show title and subtitle. I hope you like this also comments about your thoughts. also For more content &lt;strong&gt;follow me on Instagram&lt;/strong&gt;  &lt;a href="https://www.instagram.com/developer_nikhil27/" rel="noopener noreferrer"&gt;@developer_nikhil27&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Thank you 🙂!&lt;/p&gt;

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

</description>
      <category>html</category>
      <category>javascript</category>
      <category>webdev</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Responsive Footer Using HTML &amp; CSS</title>
      <dc:creator>Nikhil Bobade </dc:creator>
      <pubDate>Wed, 01 Dec 2021 15:32:19 +0000</pubDate>
      <link>https://dev.to/nikhil27b/responsive-footer-using-html-css-3gg</link>
      <guid>https://dev.to/nikhil27b/responsive-footer-using-html-css-3gg</guid>
      <description>&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;How are you guys today I writing this post after to much request from you. In this post I created simple responsive  footer using HTML &amp;amp; CSS.&lt;/p&gt;

&lt;p&gt;You can also create a good and responsive footer after using this I use flex and grid so its responsive for all the media query you can be use any of this to create a footer but I code this footer for beginners. if you are good in frontend then you don't need to write this much of code. I use 2 media query for this post. &lt;/p&gt;

&lt;p&gt;I hope you like this also comments about your thoughts. &lt;strong&gt;Please Follow on Instagram For More Content&lt;/strong&gt;.  &lt;a href="https://www.instagram.com/developer_nikhil27/" rel="noopener noreferrer"&gt;@developer_nikhil27&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Thank you 🙂!&lt;/p&gt;

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

</description>
      <category>html</category>
      <category>webdev</category>
      <category>beginners</category>
      <category>css</category>
    </item>
    <item>
      <title>Animated Profile Card Using HTML CSS &amp; GSAP</title>
      <dc:creator>Nikhil Bobade </dc:creator>
      <pubDate>Sun, 28 Nov 2021 14:15:26 +0000</pubDate>
      <link>https://dev.to/nikhil27b/animated-profile-card-using-html-css-gsap-4p63</link>
      <guid>https://dev.to/nikhil27b/animated-profile-card-using-html-css-gsap-4p63</guid>
      <description>&lt;p&gt;Hello Guys,&lt;/p&gt;

&lt;p&gt;Thank you guys for my last post response. Today I Created an Animated profile card using HTML CSS &amp;amp; GSAP Animation. I use the simple card and use GSAP timeline() to animate the card using gsap.from() you can animate a card. I hope you like this also comments about your thoughts. also For more content &lt;strong&gt;follow me on Instagram&lt;/strong&gt;  &lt;a href="https://www.instagram.com/developer_nikhil27/" rel="noopener noreferrer"&gt;@developer_nikhil27&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Thank you 🙂!&lt;/p&gt;

&lt;p&gt;Checkout new post &lt;/p&gt;


&lt;div class="ltag__link"&gt;
  &lt;a href="/nikhil27b" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__pic"&gt;
      &lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F481802%2Fff897af1-c333-4e04-8f08-d6d1356a1c14.jpeg" alt="nikhil27b"&gt;
    &lt;/div&gt;
  &lt;/a&gt;
  &lt;a href="/nikhil27b/responsive-footer-using-html-css-3gg" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__content"&gt;
      &lt;h2&gt;Responsive Footer Using HTML &amp;amp; CSS&lt;/h2&gt;
      &lt;h3&gt;Nikhil Bobade  ・ Dec 1 '21&lt;/h3&gt;
      &lt;div class="ltag__link__taglist"&gt;
        &lt;span class="ltag__link__tag"&gt;#html&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#webdev&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#beginners&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#css&lt;/span&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/a&gt;
&lt;/div&gt;


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

</description>
      <category>html</category>
      <category>javascript</category>
      <category>webdev</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Responsive Navbar Using HTML &amp; CSS</title>
      <dc:creator>Nikhil Bobade </dc:creator>
      <pubDate>Sun, 21 Nov 2021 13:53:22 +0000</pubDate>
      <link>https://dev.to/nikhil27b/responsive-navbar-using-html-css-3aic</link>
      <guid>https://dev.to/nikhil27b/responsive-navbar-using-html-css-3aic</guid>
      <description>&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;How are you all I am writing this post after so long break. Today I Created a simple responsive header menu using HTML &amp;amp; CSS I hope you like this also comments about your thoughts. also For more content follow me on Instagram  &lt;a href="https://www.instagram.com/developer_nikhil27/" rel="noopener noreferrer"&gt;@developer_nikhil27&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Thank you 🙂!&lt;/p&gt;

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

</description>
      <category>html</category>
      <category>javascript</category>
      <category>webdev</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Get started with github</title>
      <dc:creator>Nikhil Bobade </dc:creator>
      <pubDate>Sat, 02 Oct 2021 07:43:13 +0000</pubDate>
      <link>https://dev.to/nikhil27b/get-started-with-github-2647</link>
      <guid>https://dev.to/nikhil27b/get-started-with-github-2647</guid>
      <description>&lt;p&gt;Hey guys hacktoberfest is started if you don’t know about GitHub or what is GitHub how its use so this is useful post for you.&lt;br&gt;
In this post you learn how to use GitHub and create your 1st pull request with using GitHub. and also after 4 successful pull request you will be get free t-shirt from hacktoberfest event. so learn and participate in event.&lt;/p&gt;

&lt;h3&gt;
  
  
  What is GitHub:-
&lt;/h3&gt;

&lt;p&gt;GitHub is a web-based interface that uses Git, the open source version control software that lets multiple people make separate changes to web pages at the same time. As Carpenter notes, because it allows for real-time collaboration, GitHub encourages teams to work together to build and edit their site content.&lt;/p&gt;

&lt;h3&gt;
  
  
  GitHub Account and create repo :-
&lt;/h3&gt;

&lt;p&gt;1.go to github.com and simple create your account .&lt;br&gt;
2.Create a new repository&lt;br&gt;
3.To create a new repository, select New Repository from the + sign dropdown menu (you can see I've selected it in the upper-right corner in the image above).&lt;br&gt;
4.Enter a name for your repository (e.g., "portfolio") and click Create Repository).&lt;br&gt;
5.Your 1st repo is created. 😊🎉&lt;/p&gt;

&lt;h4&gt;
  
  
  Now we are moved to next step :-
&lt;/h4&gt;

&lt;p&gt;1.Download git from browser.&lt;br&gt;
2.&lt;a href="https://git-scm.com/" rel="noopener noreferrer"&gt;https://git-scm.com/&lt;/a&gt; .&lt;br&gt;
3.simple download and install the git software&lt;/p&gt;

&lt;h5&gt;
  
  
  Simple now open your command prompt or PowerShell 💻
&lt;/h5&gt;

&lt;p&gt;1.Now we are Create folder for your project folder use this command (mkdir Demo).&lt;br&gt;
2.Change your terminal to the Demo directory with the command (cd Demo).&lt;br&gt;
3.Now create your 1st file readme file and save as (readme.md)&lt;/p&gt;

&lt;h5&gt;
  
  
  yeah 😀 Now its time to add our file in GitHub
&lt;/h5&gt;

&lt;p&gt;1.Use command ( git init  )in terminal .&lt;br&gt;
2.and add that file in git like git add (filename) or git add . there are to add multiple file we are use ( git add . ).&lt;br&gt;
3.add your remote URL &lt;br&gt;
4.git remote add origin &lt;a href="https://github.com/" rel="noopener noreferrer"&gt;https://github.com/&lt;/a&gt;/Demo.git&lt;br&gt;
5.then use command for commit the changes ( git commit -m “first commit”&lt;br&gt;
6.After this you can be use git status to check the your files .&lt;br&gt;
if you want to change the branch use this command (git branch -m main)&lt;br&gt;
7.now its time to push your code  or files to GitHub&lt;br&gt;
8.Use git push  -u origin main &lt;/p&gt;

&lt;p&gt;Congratulations! 🎉🎉🎉 You have create your 1st requst to git now if you want to learn more comment git at this post or simple check github docs .&lt;/p&gt;

&lt;h5&gt;
  
  
  Thank You.
&lt;/h5&gt;

&lt;p&gt;A collabration with Geeky4u Did you find it helpful let me know in comments.&lt;/p&gt;

</description>
      <category>devops</category>
      <category>beginners</category>
      <category>html</category>
      <category>webdev</category>
    </item>
    <item>
      <title>5 Amazing Mind Mapping Application</title>
      <dc:creator>Nikhil Bobade </dc:creator>
      <pubDate>Mon, 20 Sep 2021 13:53:48 +0000</pubDate>
      <link>https://dev.to/nikhil27b/5-amazing-mind-mapping-application-22h</link>
      <guid>https://dev.to/nikhil27b/5-amazing-mind-mapping-application-22h</guid>
      <description>&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;How are you all Today this post about the 5 Amazing Mind Mapping Websites every developer know a mind mapping website is very useful with this you can create a prototype or your website flow. I hope you like this also comments about your thoughts. also For more content follow me on Instagram  &lt;a href="https://www.instagram.com/developer_nikhil27/" rel="noopener noreferrer"&gt;@developer_nikhil27&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;1.Coggle - Best website for flow or Mind Mapping&lt;/p&gt;

&lt;p&gt;&lt;a href="https://coggle.it/" rel="noopener noreferrer"&gt;Coggle&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fulg3nz5hz0ze3bjjvbbj.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fulg3nz5hz0ze3bjjvbbj.png" alt="Alt Text" width="" height=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;2.Mind Meister - For Professional &lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.mindmeister.com/" rel="noopener noreferrer"&gt;Mind Meister&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Flphqc68wicy06ho21chc.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Flphqc68wicy06ho21chc.png" alt="Alt Text" width="" height=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;3.X Wind&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.xmind.net/" rel="noopener noreferrer"&gt;X Wind&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F93yyi22r2ewodoxpkze2.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F93yyi22r2ewodoxpkze2.png" alt="Alt Text" width="" height=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;4.Mindomo - For more features &lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.mindomo.com/" rel="noopener noreferrer"&gt;Mindomo&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0vkbdxxf206v858tdlnw.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0vkbdxxf206v858tdlnw.png" alt="Alt Text" width="" height=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;5.Gliffy - Easy to use with more features &lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.gliffy.com/" rel="noopener noreferrer"&gt;Gliffy&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1nsxcc3di1pom6r6k1rm.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1nsxcc3di1pom6r6k1rm.png" alt="Alt Text" width="" height=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Thank you 🙂!&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>webdev</category>
      <category>codenewbie</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Amazing Button Animation Using HTML &amp; CSS</title>
      <dc:creator>Nikhil Bobade </dc:creator>
      <pubDate>Fri, 03 Sep 2021 14:55:33 +0000</pubDate>
      <link>https://dev.to/nikhil27b/amazing-button-animation-using-html-css-eka</link>
      <guid>https://dev.to/nikhil27b/amazing-button-animation-using-html-css-eka</guid>
      <description>&lt;p&gt;Hello, today I created an Amazing button hover Using HTML &amp;amp; CSS. I hope you like this also comments about your thoughts.&lt;/p&gt;

&lt;p&gt;For more content follow me on Instagram  &lt;a href="https://www.instagram.com/developer_nikhil27/" rel="noopener noreferrer"&gt;@developer_nikhil27&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Thank you!&lt;/p&gt;

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

</description>
      <category>html</category>
      <category>webdev</category>
      <category>css</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Cool Button Hover Effect Using HTML &amp; CSS</title>
      <dc:creator>Nikhil Bobade </dc:creator>
      <pubDate>Mon, 30 Aug 2021 14:20:53 +0000</pubDate>
      <link>https://dev.to/nikhil27b/cool-button-hover-effect-using-html-css-2n7e</link>
      <guid>https://dev.to/nikhil27b/cool-button-hover-effect-using-html-css-2n7e</guid>
      <description>&lt;p&gt;Hello, today I created an Amazing button hover Using HTML &amp;amp; CSS. I hope you like this also comments about your thoughts.&lt;/p&gt;

&lt;p&gt;For more content follow me on Instagram  &lt;a href="https://www.instagram.com/developer_nikhil27/" rel="noopener noreferrer"&gt;@developer_nikhil27&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Thank you!&lt;/p&gt;

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

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