How to apply background color on background image in CSS

How to apply background color on background image in CSS

Sometimes we need to add a colored mask on the background image of an element. Here’s how to apply background color on a background image in CSS We can use the background-image CSS property to apply background color on the background image. First, provide a linear-gradient and then the background image URL. Here is the syntax - background-image: linear-gradient(0deg, transparent, red), url(“link to image”); Also Read - Make a cool Image hover effect using CSS only...

January 23, 2023 · 2 min · 318 words · Govind Panchawat

Animated Gradient Border Generator

Hello guys! This is an Animated Gradient Border Generator that I have made for you. With this you can create a cool animated gradient border card and copy the CSS code of it. Here is the original tool link - Animated Gradient Border Generator If you want to learn more about Animated Gradient border then I have written an article on it which you can find here - How to Create an Animated Gradient Border with CSS

January 17, 2023 · 1 min · 77 words · Govind Panchawat
Godot 4 2D top-down movement

How to make a 2D top-down character controller in Godot 4

A lot has changed in Godot 4. From rendering to the GD script. And this post is for those who are looking for a Godot 4 2D top-down character controller. We can create a 2D character controller using the new Godot 4 CharacterBody2D node. It is a 2D physics body node specialized for the characters moved by script. Video tutorial We will start by creating a separate scene for our player character....

January 15, 2023 · 5 min · 916 words · Govind Panchawat
Make a cool Image hover effect using CSS only

Make a cool Image hover effect using CSS only

Once a wise man said to become a great frontend developer let your creativity go wild. So I let my creativity run wild and came up with this awesome cool image hover effect using CSS only. Also Read - Which CSS property controls the text size? (The font-size CSS property) Learning the CSS hover effect on an image can make you archive a beautiful website. So we will learn some basic CSS animations in this post....

January 14, 2023 · 4 min · 754 words · Govind Panchawat
The font-size CSS property

Which CSS property controls the text size? (The font-size CSS property)

As a CSS beginner, you must wonder which CSS property controls the text size. I have been in this state and worry not because as you practice you will learn all the basic CSS properties. It is the font-size CSS property that controls the text size. This property can take values in 4 types of units px, em, rem, and % (percentage). These are the most used units in CSS. It can also take absolute values....

January 12, 2023 · 2 min · 331 words · Govind Panchawat
Popup contact form using JQuery

Popup contact form using JQuery

Hello 👋 my fellow coders, In this post we will learn how to create a popup contact form for your website. Contact forms are a crucial element of any website, allowing users to get in touch with you. While there are many ways to create a contact form, using a popup form can be particularly effective. Also Read - 3D marquee effect using CSS In this post, we’ll show you how to create a popup contact form using HTML, CSS, and jQuery....

January 10, 2023 · 3 min · 431 words · Govind Panchawat
3D marquee effect using CSS

3D marquee effect using CSS

Hello 👋 my fellow developers. Today we will learn how to create a 3D marquee text effect using CSS. As a web developer, you know that adding animation to your website is an important way to engage visitors. Also Read - Beautiful animated search bar using CSS One way to do this is by using CSS to create eye-catching text effects. In this post, we’ll explore how to create a 3D text marquee effect using CSS....

January 9, 2023 · 2 min · 300 words · Govind Panchawat
Beautiful animated search bar using CSS

Beautiful animated search bar using CSS

As a web developer, you know that a search bar is essential to any website. It allows users to find the content they’re looking for and can be a powerful tool. But a plain, static search bar can be dull and uninviting. That’s where animated search bars come in. Also Read - Animated text using CSS By adding animations to your search bar, you can create a more engaging and appealing user experience....

January 8, 2023 · 3 min · 522 words · Govind Panchawat
Animated text using CSS

Animated text using CSS

As a web developer, you know that CSS (Cascading Style Sheets) is a powerful tool for styling and animating web content. With CSS, you can change the color, size, and layout of HTML elements, as well as add transitions and animations to create dynamic and engaging websites. Also Read - Color picker in HTML easy way One of the most popular ways to use CSS is to animate text. By adding transitions and transformations with SVG to text elements, you can create eye-catching and attention-grabbing effects that will make your website stand out....

January 7, 2023 · 2 min · 280 words · Govind Panchawat
Color picker in HTML easy way

Color picker in HTML easy way

As a web developer, you know that the color picker is an important feature. HTML has an input type for the color picker. This color picker has a range of options to choose colors. Also Read - 7 easy ways to create Tailwind CSS Button In HTML you can use the input element with it’s type set to color to create a color picker. Heres an example how to create an color picker in html...

January 7, 2023 · 1 min · 203 words · Govind Panchawat