Loan EMI Calculator and Payment Schedule Generator using PHP

An Equated Monthly Installment (EMI) is defined as “A fixed payment amount made by a borrower to a lender at a specified date each calendar month. Equated monthly installments are used to pay off both interest and principal each month,... Read more

Responsive Blog List Design with overlay title

In this tutorial, we are going to design a responsive blog list design using Bootstrap. The layout design comprises of a list of blog posts along with an image and title associated with it. The title is displayed over the... Read more

YouTube Clone Design Using HTML and CSS

In this tutorial, we will provide a complete source code to make a website design like YouTube. We will make this webpage using HTML and CSS.   Source Code index.php style.css logo.svg profile.jpeg index.php <html> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible"... Read more

Real Time HTML CSS and JavaScript Editor with Preview

In this tutorial, we are going to learn to create a real-time HTML, CSS, and JavaScript editor with preview in a webpage. We can easily write our code in the text area provided the output of which can be easily... Read more

Random password generator with character length using JavaScript

In this tutorial, we are going to learn to create a random password generator tool with an option to change the number of characters. We will be using JavaScript to create a random string to generate the password. Full Source... Read more

IPhone UI design using HTML and CSS

In this article, we are going to create an Apple iPhone like User Interface (UI) design using HTML and CSS. Full Source Code Here : <style type="text/css"> html,body { height:100%; } .iphone { margin:auto; border:10px solid black; border-radius:40px; width:320px; height:700px;... Read more

How To Make A Website Like Facebook Using HTML And CSS

In this tutorial, we will learn to make a social media website design like Facebook. We will make this social media website template using HTML and CSS. LIVE DEMODOWNLOAD Follow this video for complete guidance :   Read more

Design a Digital Clock using JavaScript

In this article, we are going to design a working digital clock using JavaScript. The basic setup for digital clock : <div id="clock"></div> <script type="text/javascript"> function showTime(){ let time = new Date(); let hour = time.getHours(); let min = time.getMinutes();... Read more

How to change MySQL root password in XAMPP localhost ?

The root password for XAMPP is empty by default. The default empty password is obvious for development purpose in local environment. However, if we want to make the database more secure and not easily accessible, we can easily change the... Read more

Calculate Internet Connection Speed using JavaScript

In this article,  we are providing you with a code snippet which you can include in any webpage where you want to display the internet speed in Mbps. Basic Idea : The basic idea here is to load an image... Read more

Access Camera and Read QR code using JavaScript

In this tutorial, we are going to create a QR Reader using JavaScript and HTML5. JavaScript enables us to access the camera and then we can easily scan the QR code to get the message in the QR Code. We... Read more

One Thing Per Page Design using HTML, CSS, JavaScript and JQuery

Welcome to yet another interesting tutorial in which we will be designing a webpage. The webpage shows a single item in a single view and when scrolled jumps to another item. Source Code <script type="text/javascript" src="jquery.min.js"></script> <link rel="stylesheet" href="bootstrap.min.css"> <style... Read more

Draggable HTML Element using pure JavaScript

In this article, we are going to learn to create a draggable HTML element with pure JavaScript and no use of any other libraries or plugins. Source Code : <!DOCTYPE html> <html> <style> #mydiv { position: absolute; z-index: 9; background-color:... Read more

Using Authentication Header with file_get_contents in PHP

In PHP, file_get_contents() function is commonly used to get content of a file or a url and it works like a charm in normal scenario. If in case, the URL or file endpoint is under htaccess authentication, issue arises. Learn... Read more

Facebook Style Login Page Design using HTML and CSS

Facebook is an American online social media and social networking service based in Menlo Park, California, and a flagship service of the namesake company Facebook, Inc. It was founded by Mark Zuckerberg, along with fellow Harvard College students and roommates... Read more