
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Pankaj Kumar Bind has Published 35 Articles

Pankaj Kumar Bind
1K+ Views
In this article, we will style the label for the radio button which is currently selected. CSS also allows you to eliminate the default radio button and style the selected and unselected states of the labels. This will be accomplished with the help of the :checked pseudo class. Additionally adjacent ... Read More

Pankaj Kumar Bind
1K+ Views
This article explains how to handle XML documents in PHP. XML (eXtensible Markup Language) is defined as a textual markup language designed for both people and computers. It is a format used for storing and moving data between applications. PHP simplexml_load_string() function provided by PHP allows us to parse XML ... Read More

Pankaj Kumar Bind
3K+ Views
When designing web forms, aligning labels next to input fields can significantly improve readability and usability. This alignment enhances the form's visual structure, making it easier for users to fill out information. In this article, we’ll cover CSS techniques for aligning labels both to the right and left of their ... Read More

Pankaj Kumar Bind
1K+ Views
When creating responsive images in web design, a common requirement is to make the image fill the entire container while preserving its aspect ratio. Traditionally, the background-size: cover; CSS property is used with background images to achieve this effect. However, for inline images (using the tag), there is a ... Read More

Pankaj Kumar Bind
1K+ Views
Creating an animated clip with a slider using only HTML and CSS is a great way to display a series of images in a visually appealing and interactive way without using JavaScript in this tutorial, we'll walk you through the process of creating an animated clip effect using pure HTML ... Read More

Pankaj Kumar Bind
2K+ Views
To make your website an even more enjoyable place for your users, feel free to add animations that will make interactions tastefully eye-candy. One of the widely used effects is heart animation which happens during double click on social media platforms. This article will teach you how to develop a ... Read More

Pankaj Kumar Bind
1K+ Views
JavaScript Object Notation or JSON is recognized widely for data interchange while exporting and importing modular result data is done through CSV (Comma-Separated Values). It is quite common to convert JSON to any other format for reporting purposes or to integrate with different systems. In this article, we will explore ... Read More

Pankaj Kumar Bind
1K+ Views
CSV (comma-separated values) file formats are perfect for many applications that store tabular data while JSON (JavaScript Object Notation) is popular among web applications. Because it is understandable and cooperating with javascript is a lot of work transforming the data from CSV into JSON format. specifically, for the case of ... Read More

Pankaj Kumar Bind
1K+ Views
Creating a 404 page is essential for any website to handle cases where a URL does not exist or may have been modified. To set up a 404 page in React, we’ll create a component to display whenever a 404 error occurs. Here’s how you can set up a PageNotFound ... Read More

Pankaj Kumar Bind
1K+ Views
A monorepo, short for "monolithic repository, " is a single repository containing multiple projects, it's commonly used by large-scale projects or organizations that want to simplify dependency management, build processes and overall project structure. Read this tutorial to learn how to move multiple projects into a single Git repository while ... Read More