Tutorials

Build a New Year Countdown Timer Clock in JavaScript & HTML5

Build New Year Countdown Timer Clock in JavaScript & HTML5

In this tutorial, you will learn how to make a New Year Countdown Timer Clock using HTML5, CSS3, and JavaScript.…

September 13, 2022

Build Multiplayer Car Racing Game Using C++ Graphics Program

Keys Control for 2 Players Car Racing Game in C++ Use the 'LEFT' and 'RIGHT' arrows to control the right…

September 13, 2022

How to Make Python Checkers Game? [Full Source Code]

In this tutorial, you will learn how to make Python Checkers Game. You will get the complete Python checkers game…

September 13, 2022

Build an Online Tool to Unminify JS, HTML, CSS, XML and JSON Source Code

In this tutorial, I will teach you how to make an online tool that can unminify JS, HTML, CSS, XML,…

September 13, 2022

Display Photos From Your Facebook Album Using jQuery Plugin

Available Options albumURL (required): full URL to a Facebook Albumlimit: limit to the last X photos (default: 10)CSS: CSS styles to…

September 13, 2022

Math Scientific Calculator in JavaScript, HTML, and CSS

JavaScript Scientific Calculator Source Code index.html <html> <head> <script src="script.js" type="text/javascript"> </script> <link rel="stylesheet" href="styles.css" /> </head> <body> <div class=main>…

September 13, 2022

PHP 8 Convert JSON to XML File [Latest Method]

function array2xml($array, $xml = false){ if($xml === false){ $xml = new SimpleXMLElement('<result/>'); } foreach($array as $key => $value){ if(is_array($value)){ array2xml($value,…

September 13, 2022

JavaScript Snakes and Ladders Multiplayer Game Source Code

In this tutorial, I will teach you how to make a simple Snakes and Ladders Board Game using JavaScript. The…

September 12, 2022

JavaScript HTML2PDF.js Add Header/Footer to All PDF Pages

In this tutorial, I will show you how to add a header and footer to each and every page of…

September 12, 2022

Convert HTML to PDF Using JavaScript HTML2PDF.js Library

Install html2pdf Library Add html2pdf library in your code using CDN. <script src="https://cdnjs.cloudflare.com/ajax/libs/html2pdf.js/0.8.0/html2pdf.bundle.min.js"></script> HTML to PDF Using JavaScript Code index.html…

September 12, 2022