Inventory Management System in PHP
Inventory is the goods or materials a business intends to sell to customers or users for making a profit. An inventory management system is the process by which you track your goods throughout your entire supply chain, from purchasing to production to end sales. The goal of inventory management system is to have the right […]
Add color swatches in Shopify
Today we discuss the add color swatches using metafields in Shopify.We will create two metafields one for color code and one for the product.In product, metafield assigns the products and adds colors into the color code metafield.In my case colour_code for the color code and colour_swaches for the products. 1) In Shopify, you can find […]
How to create custom section in shopify
Today we discuss to create a custom section in Shopify.Sometimes we want to display some extra content dynamically. Steps to create section: 1) From Shopify admin, go to Online Store > Themes.2) Find the theme you want to edit and click Actions > Edit code.3) Go to Sections > Add a new section > Enter […]
Top 10 css interview questions
Full form of the CSS if Cascading Style Sheets 1) Types of CSS a. Inlineb. Internal or Embeddedc. External a. Inline This style is specified within the HTML tag using the style attribute.Example <p style=”color:red”>Hello</p> b. Internal or Embedded The CSS placed inside the HTML page.Example <p>Hello</p> <style> p{ color:red } </style> c. External External […]
Top 5 image optimizer tools
Today we share the top 5 image optimizer tools which are used for the reduced size of the images without installing any software.Purpose of the image optimization is to improve the speed of web pages.Image optimization also improves your SEO ranking.Using image optimizer tools get a higher Lighthouse score and increase your visibility.You can reduce […]
Create a pie chart using JavaScript.
Today, We learn to create a pie chart without any library. This post will take you through how to do that using JavaScript, HTML Canvas, and CSS. Pre-Requirements HTML CSS JavaScript Create a pie chart full code: <!DOCTYPE html> <html> <head> <title>canvas test</title> <style type=”text/css”> .pie_container{ width: 100%; height: 100vh; display: flex; justify-content: center; align-items: […]
Top 5 Hosting Providers in India
In this blog, we will discuss about top 5 hosting providers in India. Web hosting is a service that allows anyone to post a website/web page/web application onto the internet. A web hosting service provider, is a business that provides the platform and services needed for the website or webpage to be viewed online. Websites […]
How to Set Up Google Site Kit in WordPress
In this blog we will see how to set up Google Site Kit in WordPress in simple steps. Google Site Kit plugin is one of the important plugin which every WordPress user love. Below are the steps of how to setup Google Sit Kit in WordPress- Login to your WordPress dashboard and click Add New […]
Step by step create PWA website
According to this article, we discuss how to create a PWA website. What is a PWA? 1. PWA stands for Progressive Web App 2. It is a modern web development approach including HTML, CSS, and JavaScript. It shows how to use service workers 3. PWA is a set of functionality. When implemented on a web […]
HTML Responsive Web Design
Let’s discuss about HTML Responsive Web Design. The number of people using smartphones and tablets is increasing each passing day. Millions of users are surfing the web via mobile. Mobile search is taking over Internet surfing, which covers almost everything such as social media, checking emails, online shopping, online music and games, online ticket bookings, […]
Emerging e-commerce marketing trends to follow
Today, lets discuss about emerging e-commerce marketing trends to follow. Marketing trends are changing dynamically. The way you market or promote your business today may not work tomorrow. This sentence holds true for every business and all marketing genre. Companies are adapting and experimenting with new marketing trends to discover what forms of marketing can […]
No matching service worker detected in PWA
Most of the PWA developers almost face this issue, which is “No matching service worker detected” in PWA. Today we post for the same with proper resolution. You may need to reload the page or check that the service worker for the current page also controls the start of the URL from the manifest. Below […]