Creating a Sticky Header that Shrinks on Scroll Hey there, fellow coder! Welcome to another exciting tutorial where we’ll add some delightful interactivity to your website. Have you ever noticed those website headers that stick to the top of the page as you scroll down? And if that’s not cool enough, they even shrink to…
How to Build a JSON-Based Quiz App in React
How to Build a JSON-Based Quiz App in React Hello, fellow code explorer! 🌟 Are you ready to embark on your first adventure in React? Today, we’re going to build a simple yet engaging quiz app using JSON and React. By the end of this tutorial, you’ll have a fully functional quiz app that fetches…
Intro to Webpack: Why You Need a Bundler
Intro to Webpack: Why You Need a Bundler Hey there! If you’re reading this, you’re probably either curious about Webpack or have heard terms like “bundling” and “module bundler” thrown around in the world of web development. Webpack might seem complex at first glance, but don’t worry. I’m here to break it down for you…
Intro to GraphQL: What Makes It Different from REST?
Intro to GraphQL: What Makes It Different from REST? Hello there! If you’re stepping into the vibrant world of APIs, you’ve probably heard about REST. It’s been the go-to framework for building APIs for quite some time. But wait, there’s another player in the field that’s making waves – GraphQL! You might be wondering, “What…
Building Your First Blog Using the Django Framework
Building Your First Blog Using the Django Framework Hello, budding developers! If you’ve ever wanted to build your very own blog from scratch, you’ve clicked on the right article. Today, we’re going to demystify the process of setting up a simple blog using Django. Django is a high-level Python web framework that encourages rapid development…
Creating Loading Skeletons in Your App
Creating Loading Skeletons in Your App Hello, coding enthusiasts! If you’ve ever found yourself waiting for an app to load and staring at a blank screen, you know just how frustrating that can be. But what if I told you there’s a way to keep your users engaged and enhance their experience even while data…
Create a Tic Tac Toe game using plain javascript, html and css!
Are you beginning your web development career? Or are you just trying to have fun learning new skill? Whatever it is. Learning to create a simple Tic Tac Toe game that you have played with your friends hundreds of time is definitely a fun thing to do in your journey. So let us start without…
How to upload your website on your own domain?
After successfully creating a website, you want to publish your website to the internet. In this blog, we are going to learn how to publish or upload a website to the internet in 6 easy steps. Buy a domain name Buy a web hosting service Choose a website upload method Upload your website files Import…
Type Nepali (देवनागरी) easily with Unicode Romanized keyboard layout
Are you having difficulty in typing Nepali (देवनागरी) the traditional way? If yes, then we have a solution for you. We know learning typing Nepali (देवनागरी) is difficult and very time consuming. You might have installed different app like ‘Typeshala’ for practicing and just for that you might have spent lots of time which otherwise you could have used in…
Create a Simple JavaScript Countdown Timer
In this blog, we are going to learn how we can create a simple countdown timer to embed in any website using JavaScript. First we need to set the date we’re counting down to, var countDownDate = new Date(“Jan 1, 2050 15:37:25”).getTime(); Next we need to update the count down for every second so we…