
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

318 Views
Learn how to design a technical documentation website using HTML and CSS. Website's layout is focused on optimized content organization in the field of programming documentation to provide user friendly navigation. To achieve a non-technical look and feel, HTML is used for content layout and CSS for structuring and presentation this documentation user friendly. Key Steps to Design Responsive Technical Documentation Website The implementation approach consists of several key points that contribute to the overall design and functionality of the webpage − HTML Structure − The structure of the HTML document and its division ... Read More

419 Views
To control the size of background images, it's important to ensure they look good on all screen sizes. Images can stretch, crop, or repeat, which can make the design unappealing, especially when container sizes change in responsive layouts. Our task is to control background image sizes with Tailwind CSS. We must ensure the images fit their containers, maintain quality and aspect ratios, and adapt to different screen sizes and devices. Approaches to control background image size Tailwind CSS provides several approaches to managing background image sizes: Using the bg-auto utility ... Read More

308 Views
Every HTML document can contain different image formats, such as PNG, jpeg, SVG, gif, etc. that can be adjusted according to your needs. This article will explore various ways to resize an SVG image in HTML. SVG (Scalable Vector Graphics) is an image format used in web development. It is an XML-based image format that can be scaled to any size without losing its quality. Due to this reason, it is best to use an SVG image for logos and icons. These images are resolution-independent, meaning they can be scaled to any size without losing quality. Resizing ... Read More

142 Views
An HTML5 input type enhances user experience and minimizes the requirement for JavaScript validation. Some HTML5 input types that are rarely used but can noteworthily improve form on websites are listed below. HTML5 input type ValuesInput TypePurposeNumeric keypads are displayed on mobile browsers, thereby enhancing UX on devices.Any specific date can be picked from a calendar, securing proper format.It minimizes the complexities of entering inputs for month/year related data. For example, setting up the expiry date of credit cards.It unifies the selection of files directly into the form and can specify the acceptable file types.It can be used to ... Read More

3K+ Views
To set the input type date in dd-mm-yyyy format using HTML. Discover simple techniques to customize date formats for better user experience and data consistency. Creating intuitive web forms is crucial for enhancing user experience, particularly with date inputs. Although HTML5 introduced the feature for easy date selection, it generally formats dates as YYYY-MM-DD. This can be inconvenient for users in regions that prefer the DD-MM-YYYY format. This article will guide you on various methods to implement date input in the DD-MM-YYYY format utilizing HTML, JavaScript, and external libraries. Approaches for Implementing DD-MM-YYYY Format To achieve a ... Read More

245 Views
Sometimes while writing the content of an HTML file, there might be the need to preserve blank spaces and line breaks. You might have noticed when you try to write something in the paragraph tag or the tag that has a lot of white spaces or a line break, it is not visible when the HTML page is rendered in the web browser. This article will show how to preserve those spaces while rendering the HTML page. Render an HTML String Preserving Spaces and Line Breaks Using HTML pre Tag ... Read More

261 Views
Rendering lists of data is a common task in React applications, and rendering an array of objects in ReactJS is straightforward. When you have a variety of objects and you want to display them in your React component, there are several methods you can use. This article will walk you through the most common approaches using map(), for, for...of, and filter() methods. Approaches to Render Array of Objects in ReactJS Using map() Method Using for Loop Using for...of loop Using filter() Method ... Read More

403 Views
Sometimes we want to set a base attribute to everything and allow more specific selectors to adjust it for certain elements as needed. There are also cases, especially when doing brief temporary testing, where we want a font to apply to all text no matter what. Ways to Set Global Font You can use the below-mentioned approaches to set the global font to your entire HTML document. Using Universal Selector Using !important Keyword Get Started with Approaches Here you will see an example of each approach mentioned above ... Read More

233 Views
In this article, we will create a Neumorphism Loading Spinner using HTML and CSS. The loading spinner is a common UI element used to indicate a process in progress, such as loading content or waiting for data from the server. We’ll add a modern touch to it using the Neumorphism design technique. Neumorphic designs give a 3D look by combining highlights and shadows around elements, making them appear to protrude or sink into the surface. Approach Let’s walk through the steps to create the Neumorphism loading spinner. Setting Up the HTML Structure We'll start by writing ... Read More

297 Views
CSS inline-flex and inline-block are the values of CSS display property that are used to control how elements align and behave within their containers. When working on a responsive layout, the developer often needs to control how elements align and behave within their containers. Sometimes, we need elements to behave like inline elements but with some block-level properties, while at other times, we need more control over the alignment and spacing of children elements. This brings us to the comparison of two important CSS properties inline-block and inline flex. CSS inline-block and inline-flex Value of Display ... Read More