Rotating Fan Animation using HTML and CSS
In this tutorial, we are going to create a rotating fan animation using HTML and CSS. Source Code index.html <html> <head> <title>Moving Fan Animation using HTML and CSS</title> <link rel="stylesheet" href="style.css">…
News site Design with HTML, CSS and Bootstrap
In this tutorial, we are going to design a responsive news site using HTML, CSS and Bootstrap library. LIVE DEMODOWNLOAD
How to create Sticky Navbar on scroll ?
In this tutorial, we will be learning to create sticky navbar on scroll using CSS and few lines of JavaScript code. https://www.youtube.com/watch?v=RCvoPMW8X2g Source Code : <style type="text/css"> body{ background-color: #aacad6; margin:0; }…
Get random jokes with PHP using Joke API
In this tutorial, we are going to get random jokes with Joke API using PHP. Source Code : <style type="text/css"> body{ background-color: aliceblue; } .box-container{ display: flex; justify-content: center; align-items: center; height: 100vh; }…
Parallax Webpage Design using HTML and CSS
In this tutorial, we are going to design a webpage with parallax effect using HTML and CSS. https://www.youtube.com/watch?v=ZwPKyccZsFI Source Code : index.html <!DOCTYPE HTML> <html> <head> <title>Design Parallax Scrolling…
How to make Breadcrumb using HTML and CSS
In this tutorial, we are going to learn to make Breadcrumbs using HTML and CSS. A breadcrumb or breadcrumb trail is a graphical control element used as a navigational aid in user interfaces and on web pages. It allows users to keep track and maintain…
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, so that over…
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 image with gradient background…
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…
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 rendered in the preview area on the same…
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 Code : <style…
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;…
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 :
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 =…
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 MySQL password.…