
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
Found 10483 Articles for Web Development
333 Views
In web development, CSS (Cascading Style Sheets) enables the developers to determine the visual appearance and layout of a website. However, since different web browsers have varying levels of support mechanism for CSS, it can result in inconsistency while rendering the web pages by the compiler. To overcome this compatibility issue, developers often opt for using CSS hacks to ensure that their web pages are displayed consistently across different browsers and devices. One such hack is the star-preceded property (also known as star property hack), which is used to target specific versions of Internet Explorer (IE) that have limited support ... Read More

2K+ Views
Bootstrap is a widely used front-end framework for building responsive and mobile-friendly web pages. It was initially created by Twitter and is now maintained by the Bootstrap team, which is an open-source community of developers. One of the primary benefits of Bootstrap is that it allows developers to create responsive designs that work seamlessly across different screen sizes and devices. This means that websites and applications built with Bootstrap can adapt to various devices, such as smartphones, tablets, and desktops, providing users with a consistent and engaging user experience. In this article, we’ll see how to split a column ... Read More

5K+ Views
When using Forms on a webpage sometimes requires us to disable any input field. Like, to prevent the users from not allowing using some input fields until they have completed the previous steps in the form. The same can also be used for preventing users from submitting invalid data or fake data by disabling a form field until all required fields have been filled out. To solve the above problem, we have different methods that can be used to disable an input element in HTML, like using the "disabled" attribute, JavaScript, and CSS. In this article, we will see how ... Read More

343 Views
Bootstrap is a CSS framework that is used widely used among developers to design the websites because it offers a variety of pre-built components that speed up the development time. Bootstrap has multiple features for the developers that can be used, Grid system is one such, that allows the developers to create responsive layouts quickly and easily. Grid layout is very commonly used while building any web application to organize the content into different columns and rows. The grid system in Bootstrap is designed to be more flexible and customizable so that the developers can create layouts that are ... Read More

7K+ Views
To select last child with a specific class using CSS is a simple process using CSS psuedo-class selectors. In this article, we will understand three different approaches to select last child with a specific class using CSS. We are having four div elements in our HTML documnet, our task is to select the last child with a specific class using CSS. Approaches to Select Last Child using CSS Here is a list of approaches to select last child with a specific class using CSS which we will be discussing in this article with stepwise explaination and complete example codes. ... Read More

735 Views
Web development in this modern era heavily relies on Cascading Style Sheets (CSS), which play a crucial role in the visual appearance or designing of the UI and layout of web pages. The CSS enables website designers to create responsive and captivating websites that are easy on the eyes, regardless of the device used to access them. Nonetheless, CSS, like any other technology, has vulnerabilities, making it susceptible to security threats. However, with the rise of cyber threats and security breaches, securing CSS has become a significant concern for web developers. The attackers can exploit vulnerabilities in CSS code to ... Read More

1K+ Views
React is a popular JavaScript library used for building web applications. When creating a React application, it's important to style your components in an aesthetically pleasing way. One of the ways to achieve this is by using a CSS framework such as Tailwind CSS. In this article, we will see how to style a href links in React using Tailwind CSS with different methods or classes available in Tailwind CSS. Pre-requisite To use the Tailwind CSS in a React application, we’ll first need to install it. Let’s see the steps for creating a new react project and installing tailwind ... Read More

795 Views
The element is an essential component available in HTML that enables us to create interactive sections on websites like Contact forms, Login forms, etc. Through the form element, users can input and submit data to web servers. The element is versatile and may include a number of different input fields such as text boxes, radio buttons, checkboxes, drop-down menus, and buttons. Also, the element consists of multiple attributes such as "action" and "method" that are used in determining the destination of the data submitted and the method of processing. Form validation is one of the key parts ... Read More

27K+ Views
jQuery- a popular JavaScript library that is used in manipulating HTML documents, handling events, creating animations, and performing other common web development tasks. jQuery is famous for its ability to simplify JavaScript programming by providing a simple and concise syntax for selecting and manipulating DOM elements. Like using jQuery, instead of writing complex JavaScript code to traverse the DOM and manipulate elements, we can use jQuery to do it with just some lines of code. We sometimes encounter large content pages on websites and to go to a specific section, we want to perform the scrolling in the page ... Read More
10K+ Views
To create share button with different social handles using HTML and CSS, we will be using basic CSS properties and HTML tags. In this article, we will be understanding stepwise process to create share button with different social handles. In this article, we are having six HTML buttons and our task is to create share button with different social handles using HTML and CSS. We will be creating share buttons of Facebook, Twitter, Reddit, Pinterest, Linkedin and Whatsapp Steps to Create Share Button With Different Social Handles To create share button with different social handles using HTML and CSS, we ... Read More