Replicating Google home page using HTML CSS

In this tutorial ,we will learn how to create a Google home page with the help of HTML and CSS. Setting up the HTML structure <!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″> <meta name=”viewport” content=”width=device-width, initial-scale=1.0″> <title>Google</title> <link rel=”stylesheet” href=”style.css”> <link rel=”stylesheet” href=”https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined”/> </head> <body> <nav> <a href=”” class=”ntext”>Gmail</a> <a href=”” class=”ntext”>Images</a> <span class=”material-symbols-outlined app”>apps</span> …

Replicating Google home page using HTML CSS Read More »

Find number of days between two dates in JS

In this article, we will learn how to find the number of days between two dates using Javascript. But why do we need this functionality? what are its applications,  Let understand this first, this is useful in many scenarios which are as follows:- Deadline Tracking Task Scheduling Hotel Reservation Medication Scheduling Attendance Tracking Let’s see …

Find number of days between two dates in JS Read More »

Scroll to Top