Shubham Vora has Published 836 Articles

Simple Contact Form using HTML CSS and PHP

Shubham Vora

Shubham Vora

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

5K+ 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 ... Read More

What is the difference between “screen” and “only screen” in media queries?

Shubham Vora

Shubham Vora

Updated on 24-Apr-2023 18:28:03

4K+ Views

In CSS, media queries play an important role in creating a responsive web design, and nowadays responsive design is one of the important things every website requires to attract visitors. In general, we can write media queries using the @media CSS rule. However, we can use the different conditions and ... Read More

What is the Outline Effect to Text?

Shubham Vora

Shubham Vora

Updated on 24-Apr-2023 17:30:02

456 Views

Sometimes, we require to show only the text's outline and remove the text's fill. We can also say it is the outline effect. We can use various CSS properties to generate an outline effect for the text. For example, we can add a border to the text and remove the ... Read More

What is the difference between position:sticky and position:fixed in CSS?

Shubham Vora

Shubham Vora

Updated on 24-Apr-2023 17:22:58

13K+ Views

In CSS, the ‘position’ property is used to set the position in the viewport for the HTML element. It can have values such as ‘fixed’, ‘sticky’, ‘static’, ‘absolute’, ‘relative’, etc. In this tutorial, we will learn the difference between the ‘position: fixed’ and ‘position: sticky’. What is Position: Fixed in ... Read More

What is styling text input caret ?

Shubham Vora

Shubham Vora

Updated on 24-Apr-2023 17:11:57

663 Views

In the text input of the HTML, you can observe the marker showing at the editing position in the text, called the text input caret. Also, it is known as a text input cursor. In this tutorial, we will learn to style the text input caret. However, we can only ... Read More

Wave inside Text using pure CSS

Shubham Vora

Shubham Vora

Updated on 24-Apr-2023 17:10:37

1K+ Views

Developers can use CSS to add animation to the HTML element. Here, we will use CSS to add a wavy effect inside the text. It will look like a real wave in text Here, we have three approaches to add a wavy effect to the text. We will take a ... Read More

What is tree shaking in JavaScript?

Shubham Vora

Shubham Vora

Updated on 24-Apr-2023 17:07:18

365 Views

What is Tree Shaking? If you are an experienced JavaScript developer, you may hear about tree shaking. It is a common technique to remove unused codes from the application and also, and it removes unused imports from the application. Here, the ‘Tree shaking’ term is introduced by shaking a tree, ... Read More

What are the events available for server sent events in JavaScript?

Shubham Vora

Shubham Vora

Updated on 24-Apr-2023 17:05:06

504 Views

The server-sent events allow developers to open a connection between the server and the client and send data from the server to the client. Basically, it is a one-way communication, which means we can send data from the server to the client but not from the client to the server. ... Read More

Text to Voice conversion using Web Speech API of Google Chrome

Shubham Vora

Shubham Vora

Updated on 24-Apr-2023 17:03:52

1K+ Views

Nowadays, the audiobook is more preferred by readers to reading books as they can grab knowledge while doing any work by listening to it. Also, some website adds the audio of the article in every article, so if users don’t want to read the article, they can listne to it. ... Read More

Javascript Program to Check if two numbers are bit rotations of each other or not

Shubham Vora

Shubham Vora

Updated on 24-Apr-2023 17:02:49

276 Views

Problem Statement − We have given two integer numbers and need to check whether the two numbers are bit rotations of each other. In JavaScript, every integer is a 32-bit binary number which is a representation of 0 and 1. Here, we need to check if we rotate the 32-bit ... Read More

Advertisements