Found 2416 Articles for HTML

How to create a Share Button with different Social Handles using HTML and CSS?

Riya Kumari
Updated on 28-Apr-2023 17:26:33

8K+ Views

In today's digital age, social media has become an essential part of our lives. Whether it's for personal or professional use, we all want to share our content with the world. That's where social sharing buttons come in handy, allowing users to quickly and easily share content on their favorite social media platforms. In this article, we will explore how to create a share button with different social handles using HTML and CSS. Create a Share Button With Different Social Handles We will walk through step-by-step instructions on how to create a share button with multiple social media options, including ... Read More

How to drop fill color to change the image color using HTML and CSS?

Riya Kumari
Updated on 20-Nov-2023 11:50:46

1K+ Views

In the world of web development, it's essential to have knowledge about the latest CSS and HTML techniques to add stunning visual effects to a website. One such effect is the "color drop effect, " which allows you to change the color of an image on hover by dropping a fill color on it. With this effect, you can make your website more interactive and engaging for the visitors. In this article, we will guide you through the process of creating a color drop effect using HTML and CSS. So, whether you are a beginner or an experienced web developer, ... Read More

How to design a modern sidebar menu using HTML and CSS?

Riya Kumari
Updated on 28-Apr-2023 17:15:30

2K+ Views

When you think about the layout of a typical website, it is likely that you include a column of important links (navigation links for various sections in the webpage) to the right or left of the main content area. This component is known as ‘sidebar’ and is commonly used as menu across the web. Although it is commonly used, the developers generally add this element to the website for navigating from one page to other, even to different sections of a webpage. Let’s understand this feature and try to create a modern sidebar by only using HTML and CSS. What ... Read More

How to Create Image Stack Illusion by using HTML and CSS?

Riya Kumari
Updated on 28-Apr-2023 16:43:25

1K+ Views

Visual illusions are quite fascinating when it comes to web development. Using visual illusions in our websites attracts users since it can play with their minds. It tricks our brains into believing something which is actually not present. These illusions can be created using various techniques in CSS. One of most commonly used illusion is image stack illusion, which simply a delusion of depth. In this article, we will discuss steps involved in creating an image stack illusion by only using HTML and CSS. Let’s get started. What is Image Stack Illusion? Image stack illusion is a visual delusion which ... Read More

What can be done with style sheets that can not be accomplished with regular HTML ?

Shubham Vora
Updated on 27-Apr-2023 15:13:44

72 Views

Developers can use CSS to describe the presentation of the web page content. The stylesheet contains the CSS code, which we link with the web page for a better representation of the web page. Why do we Require to use a Stylesheet with an HTML Web Page? For beginners, the first question comes to mind is that why do we require to use the stylesheet? Can’t we create web pages without using the stylesheet? The answer is yes. You can create a web page without using the stylesheet. HTML is only used to add content to the web page, and ... Read More

Difference between cheerio and puppeteer

Pranavnath
Updated on 26-Apr-2023 14:22:17

255 Views

Cheerio and Puppeteer are two prevalent JavaScript libraries utilized for web scratching and computerization, but they have distinctive functionalities and utilize cases. Cheerio could be a lightweight library utilized for parsing and manipulating HTML and XML records, whereas Puppeteer may be a more strong library utilized for controlling headless Chrome or Chromium browsers and mechanizing web browsing errands. Cheerio is utilized for web scratching and information extraction, whereas Puppeteer is utilized for web computerization, testing, and scratching. The choice between Cheerio and Puppeteer depends on your particular needs and necessities. What is Cheerio? Cheerio could be a quick and lightweight ... Read More

Simple Contact Form using HTML CSS and PHP

Shubham Vora
Updated on 24-Apr-2023 18:38:48

4K+ Views

A contact form is a great way to allow users to reach out to you directly through your website. Contact forms are a crucial aspect of any website, as they allow visitors to get in touch with the website owner. A contact form on website provides an easy way for visitors to ask questions, make inquiries, or provide feedback. In this tutorial, we will be discussing how to create a simple contact form using HTML, CSS, and PHP. Step 1: Create the HTML Form The first step in creating a contact form is to create its structure using HTML. In ... Read More

Top 5 HTML Tricks That You Should Know

Shubham Vora
Updated on 21-Apr-2023 16:25:32

1K+ Views

HTML is used to create web pages. In every new release of HTML, developers make some changes and add unique features. Here, we will discuss that unknown features by most developers who can help developers improve web pages. Here, we have explained the top 5 HTML tricks with examples. Color Picker in HTML We can create a color picker in HTML using the tag. It allows us to pick up any colour by clicking on the colour or adding RGB values. Syntax Users can follow the syntax below to create a color picker using HTML. In the ... Read More

How Can Calculate HTML Input Values And Show Directly Input Value By JQuery?

Yaswanth Varma
Updated on 21-Apr-2023 15:53:44

817 Views

There are several JavaScript methods we can use to retrieve the value of the text input field. We may access or set the value of the text input field inside the script by using the jQuery .val() method. The task we are going to perform in this article is calculating HTML input values and showing them directly using JQuery. Let’s dive into the article for a better understanding. Using JQuery val() method To retrieve the values of form components like input, select, and textarea, utilize the .val() function. It returns undefined when called on a collection that is empty. Syntax ... Read More

How To Add An HTML Element Starting After One And Finishing Before Another One?

Yaswanth Varma
Updated on 21-Apr-2023 15:47:38

105 Views

This article shows how to add an HTML element in between two existing elements. This is a common task when creating webpages, and can be achieved with a few simple steps. We will be using the JavaScript API to access and manipulate the elements on our webpage. The task we are going to perform in this article is adding an HTML element, starting after one and finishing before another one. For this, we are going to use insertBefore() method. Using insertBefore() method The Node interface's insertBefore() method places a node as a child of a given parent node ahead of ... Read More

Advertisements