How to Drag and Drop Images using HTML5 ?
In this article, we will see how to create a drag and drop functionality using HTML5....
read more
How to Update User Password in Firebase and Web ?
In the previous article, we have done How to get a currently singed-in user in firebase, In this Article we will see how to update the user password. Firebase auth provides us a method called updatePassword that takes a string parameter as a new password. We can do it simply by passing the new password as an argument to the method updatePassword....
read more
Explain the form new input types in HTML5 ?
In this article, we will discuss the functionality of the newer form input types provided by HTML5. Sometimes, while filling the registration form or any online form, it would require to follow the proper format to fill the particular data. Now it’s easy to use the webform to fill up the common data like date, email, url etc. There are almost 13 new input types introduced in HTML5 form. We will see all the input types & understand them one by one....
read more
How to achieve <fieldset> like effect without using <fieldset> tag ?
Forms are used to make a group for more understandable of all users and clients, as related data fields are easier to identify. It also makes it easier for users to concentrate on smaller and more clearly defined groups by understanding them one by one as an individual rather than try to grasp the entire form at once....
read more
What are the differences between JSX and HTML?
Introduction to HTML: HTML is a Hypertext Markup Language, the standard markup language for documents designed to display and view on the web in a web browser....
read more
How to make an image draggable in HTML5 ?
Drag and drop is a very common and widely used feature in a modern-day website. It simply means to drag an image with the cursor and drop it to any other place. In this article, we are going to learn how to make an image draggable using HTML 5....
read more
HTML Background Images
HTML background images are graphics applied to the background of HTML elements, often used in webpage design for aesthetic or branding purposes. They’re set using CSS background-image property, allowing for single or repeating images, gradients, or patterns to enhance visual appeal....
read more
How to call web services in HTML5 ?
In this article, we will see how to call the Web Services in HTML5, along with knowing different methods for calling the web services & understand them through the examples....
read more
DELETE request using XMLHttpRequest by making Custom HTTP library
The task here is to show how the XMLHttpRequest can be used to DELETE data to an API by making a custom HTTP library. A placeholder API that contains an array of objects would be used as an example. The DELETE request is performed on this API. The URL of the API is https://jsonplaceholder.typicode.com/posts/...
read more
What is the use of data-reactid attribute in HTML ?
The data-reactid attribute is a custom attribute that react can easily identify its components within the DOM. Just like the HTML “classes” and “id” attributes, “data-reactid” helps in uniquely identifying the element ....
read more
How to change browser theme-color using HTML ?
In this article, we will know how to change the browser theme-color in HTML. Suppose that if we want our website to appear in green color along with changing the browser theme color which will be the same as our website, then we can use a meta tag with name and content attribute....
read more
HTML 5 <progress> Tag
The HTML 5 <progress> Tag is used to represent the progress of a task. It is similar to an indicator that displays the progress of completing a task. It is not used to represent the disk space or relevant query....
read more