Best HTML Tips
In this article, I will share with you some very useful HTML tips. Let’s start! This is a Performance tip. You can use the loading=lazy attribute to defer the loading of the image until the user scrolls to them. Use the webp image format to make images smaller and boost the performance of your website. […]
How to Hide Elements In CSS
You can hide an element in CSS using the CSS properties display: none or visibility: hidden. display: none removes the entire element from the page and mat affects the layout of the page. visibility: hidden hides the element while keeping the space the same. but there is a total of 8 ways to hide elements in CSS. 1.The opacity: N and filter: opacity(N) properties can be passed a […]
How Medimix Started?
It was the late 1960s, Dr. VP Sidhan worked as an Allopathic doctor for the Indian Railways. However, he came from the respected Cholayil family of Ayurvedic practitioners and also had a deep knowledge of Ayurveda. Dr. VP Sidhan saw that the workers who cleaned waste off the railway tracks suffered from several skin diseases. […]
How To Design Better Landing Page
What is a landing page? A landing page is usually a one-page website that promotes a certain feature or product and has a specific call to action. Follow these steps to make sure that your landing pages convert visitors to Customers. Step-1 :- Make your value proposition precise Since the headline is the first thing […]
How To Speed Up A Website
How to speed up a website is required to know for a good web developer. If you don’t know how fast your site is, You can check it at : https://developers.google.com/speed/pagespeed/insights/ Here are some of the many ways to increase your page speed: Minify JS & CSS Reduce Redirects Remove Rend-Blocking JS Compress Images Improve Server Response Time […]
Popular React Animation Libraries
React is a library for building user interfaces. For a React frontend developer, implementing animations on web pages is an integral part of your daily work, from animating text or images to complex 3D animations. Animations can help to improve the overall user experience while building a React application. In this article, we’ll compare the […]
Next.js Features
With Next.js you get many things out of the box such as built-in routing, automatic code splitting and it will even decide whether your app can be statically rendered or needs to be rendered server-side on every request – all of this without any configuration. In fact, when creating a new React application I default […]
How To Calculate The Execution Time Of The Code In JavaScript
Measuring the execution times of a code snippet can be essential as a form of debugging, especially when some other component is time-dependent on that piece of code for its execution (e.g. animations). There are mainly three ways in which this can be done: 1. Using Date.now() The static Date.now() the method returns the number of milliseconds […]
Formatting Elements in HTML
HTML Formatting is a process of formatting text for a better look and feel. HTML provides usability to format text without using CSS. There are many formatting tags in HTML. These tags are used to make text bold, italicized, or underlined. There are almost 14 options available that how text appears in HTML and XHTML. In […]
DROP SHADOW VS BOX SHADOW
There’s been a lot of talk over the differences between the CSS box-shadow property and the drop-shadow filter. Both has some advantages and disadvantages which we will see in this post Box Shadow You probably have seen and used the box-shadow before, it’s a cool feature and adds a shadow to our “box. It works […]