Author: Saurabh Choudhary

Understanding the Basic Fundamentals of DNS

Reading Time: 4 minutes In this blog, we will be gaining a basic understanding of Domain Name Systems (DNS) like what is DNS, what is an IP Address and how a DNS actually works. So stick to this blog, to learn the basic fundamentals of a Domain Name System. Introduction In the world of networking, computers don’t go by names as we humans do, they go by numbers. That’s Continue Reading

How to Implement Styling in Next.js

Reading Time: 5 minutes Styling is the most important aspect when you are developing any application. You might have the best functioning application but if your UI is not that great it is difficult to maintain active users. Styling is essential to build any web application. So, In this blog, we will be discussing how we can implement styling in Next.js and will see how we can implement global Continue Reading

How to implement Routing in Next.js

Reading Time: 4 minutes Introduction Next.js is a react framework that comes with all the features that you need for production. It uses a file-based routing system that enables routing in your application. When a file is added to the pages folder in a project, it automatically becomes available as a route. In this blog, we will be looking at how routing works in next.js, nested routes, dynamic routes, Continue Reading

How to Get started with Next.Js

Reading Time: 5 minutes In this Blog, we will be discussing what and why of Next.Js along with the creation of a Next.Js app. We will also be learning the usage of different files and folders that create-next-app provides us at the time of app creation. So, stick to this blog to gain a conceptual understanding of Next.Js. What is Next js? According to the Documentation, Next Js is Continue Reading

How to use pseudo-classes in CSS

Reading Time: 4 minutes What are Pseudo-classes in CSS? A Pseudo-class in CSS defines the special state of an element. It is a keyword that we use after the selector to apply the style based on the state of the element. For example, the active pseudo-class can be used on an anchor tag (<a>) to add extra styling if the link is active So, CSS Pseudo-class helps you apply Continue Reading

background

Fundamentals of Event Management in React

Reading Time: 5 minutes Introduction Events are some type of interaction between the user and the app, the user performs some action resulting in some reaction from the app. Any time a user clicks, drag-and-drop, fills in the input field or hovers over an element an event occurs. We as a Developer defines the function to respond to the event that occurred. These functions are event handlers and they Continue Reading

How to Start Working with Elementor in WordPress

Reading Time: 4 minutes In this blog, we will be learning how we can start working with Elementor and create beautiful landing pages and websites of your own even if you are a very beginner to Elementor. Elementor is a WordPress page builder plugin that is used by millions of sites to design ultimate Landing Pages by visual, drag, and drop editor. To help you start working with the Continue Reading

Basic HTML tags : A brief Introduction and How to use it.

Reading Time: 5 minutes Introduction Hello, readers welcome to the blog in this blog you will learn basic HTML tags, how to use them, the purpose of using them along with the code snippets that will help you get a proper explanation of these basic tags. As a result, you will be able to write your first HTML document. These tags are very crucial for any HTML document as Continue Reading