The Wayback Machine - https://web.archive.org/web/20230328080459/https://www.geeksforgeeks.org/category/web-technologies/
Skip to content

Category Archives: Web Technologies

In many languages like C, C++, Java, etc. char is a primitive data type but in JavaScript, there is no special data type to store… Read More
In this article, we will try to understand how the Strings are stored in JavaScript. Strings are a primitive data type in JavaScript and are… Read More
We have seen many shopping sites that list some limited number of products(using a back-end API) when we open the website and scroll down to… Read More
There are several ways to align a <div> element to the middle of the page. We will learn two commonly used methods for aligning the… Read More
In JavaScript, there is no sleep() function like in other programming languages. Similar effects can be done using various approaches. Approaches like Pausing the execution… Read More
Input tag (<input>) in HTML is used to take input from the user like text input, button input, file input, etc.  In CSS, pseudo-elements are… Read More
When working with CSS Grid or Flexbox, it is possible to set a size limit for siblings using one item as a reference. This means… Read More
Opening a URL in the same window and in the same tab is a common requirement for web developers. This functionality is useful when you… Read More
This article will explore why Flex and Grid layouts do not work on button and fieldset elements, and how we can overcome this issue. Flex… Read More
In this article, we are going to see how we can optimize a webpage for prints. Using CSS and media query in it we are… Read More
The <textarea> is an HTML tag used to create a multi-line input field. By default, <textarea> includes a resize grabber in the bottom right corner… Read More
React.cloneElement and this.props.children are both features in React that are used to manipulate React components and elements. However, they serve different purposes and are used… Read More
To create a fluid layout in CSS, set an element’s height to the same value as its dynamic width. This makes the layout more adaptable… Read More
In the world of web development, there are several approaches to rendering web pages: server-side rendering, client-side rendering, and server-side generation. Each approach has its… Read More
XMLHttpRequest is a JavaScript API that enables web developers to send HTTP requests to a server and receive data in response without having to reload… Read More

Start Your Coding Journey Now!