
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 2202 Articles for HTML

4K+ Views
In this article, we will show you how to add a horizontal line to your webpage using HTML. A horizontal line, also known as a horizontal rule, is a way to separate content on a webpage and can be used for visual appeal or to indicate a change in content. There are multiple ways to add a horizontal line to your webpage in HTML, but the most common approach is by using the tag. The tag is a self-closing tag that creates a horizontal line on the webpage. This approach is simple and straightforward, and it requires ... Read More

386 Views
Introduction In this article, we will show you how to add gradients to your project using CSS. Gradients are a great way to add visual interest to your website or application. They are a smooth transition between two or more colors and can be used to create a sense of depth or movement. They can also be used to create a subtle texture or pattern on your webpage. Approaches The following are the two approaches that we are going to follow in this article to add gradients to our project using CSS − Using the linear-gradient function Using ... Read More

10K+ Views
Introduction In this article, we will show you how to add a Google map to your webpage without using an API key. Google Maps is a web mapping service developed by Google that provides a wide range of features, such as street maps, satellite imagery, street views, and more. An API key is a unique code that is required to access the Google Maps API, but there are alternative methods to add a Google map to your webpage without using an API key. Approaches The approaches that we will be using to add a Google map inside HTML page ... Read More

7K+ Views
To add full-screen background video using Tailwind CSS, we will be learning about various tailwind classes. Adding a full-screen background video to your webpage can be a great way to enhance the user experience and add visual interest to your website. In this article, we will be understanding how to add full-screen background video using Tailwind CSS to your webpage. Steps to Add Full-Screen Background Video We will be following below mentioned steps to add full-screen background video using Tailwind CSS. In the head section, we have used a link tag to load the compiled ... Read More

3K+ Views
Introduction In this article, we will show you how to add Flash content within a webpage using HTML. Flash content is a type of multimedia that can be used to add interactive elements such as videos, games, and animations to a webpage. However, Flash is now considered outdated technology and not recommended to use in modern web development due to security and accessibility concerns. It is recommended to use other technologies like HTML5, CSS, and JavaScript for adding multimedia content to web pages Approaches The approaches that we will be discussing to implement this are as follows − Using ... Read More

3K+ Views
Introduction In this article, we will walk you through the process of adding a file upload function to your webpage. We will show you how to create an HTML form with a file input field, as well as how to create a script that handles the file upload process. Approaches Two approaches that we can use to add a file upload function to our webpage in HTML are as follows − Using a basic HTML form with a file input field Using jQuery and ajax Let us discuss them in detail now. Approach 1: Using a basic HTML ... Read More

6K+ Views
Introduction We use the fade effect to bring attention to certain parts of our website by gradually increasing or decreasing their opacity. This gradual change in opacity is called the fade-in or fade-out effect. When we gradually increase the opacity, it's known as the fade-in effect and is used to make the selected part of the page become more visible over a chosen amount of time. This creates a smooth transition and helps make our website more dynamic and engaging for our users. In this article, we will be exploring a few ways in which we can implement the fade-in ... Read More

319 Views
As the web storage word represents, it stores the data inside the user’s browser locally. Before HTML 5, developers were using cookies to store data locally, but the cookies allow for storing a limited amount of data, such as in kilobytes. The local storage allows users to store up to 5 MB of data. Developers use the cookies to store the data in the browser and exchange it between the client and server. When we store the data in the cookies, it expires after a particular time. However, we can set the data's expiry, but it still expires after ... Read More

37K+ Views
To display images on click using JavaScript and HTML. This article covers creating hidden images, adding click events, and revealing images dynamically for an interactive user experience. Users want to create an interactive web page where images are initially hidden and can be revealed with a click, enhancing user engagement and page load times. The challenge is implementing this functionality using JavaScript and HTML simply and efficiently. Approaches to Show Images with a Click Using the Style Display Property Using the classList.toggle() Method Using Hidden ... Read More

5K+ Views
In this tutorial, we will learn to POST unchecked HTML checkboxes. To interact with a user, it is necessary to take their input or data through the website. The HTML forms are used to take input from the user. Forms are essential to take the data of the user on the website. These forms take input from the user and send data to the server using HTTP requests. There are two types of HTTP requests one is GET, and the other is POST. The POST request is the most used type because it is secure and can send a large ... Read More