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…
Steps to create a simple login page using PHP
Today in this tutorial we are going to learn about how to simple login page using PHP and MySQL. we assume you have installed local server, have access to root user and can create database using MySql admin. Step 1: Create a `users` table in MySQL database CREATE TABLE `users` ( `id` int(10) NOT…