Posts

Build Analog Clock

Image
  In this article, we'll create a stylish analog clock using HTML, CSS, and JavaScript. You'll learn how to build the clock structure, style it with CSS, and implement the clock's ticking functionality with JavaScript. Whether you're a beginner or looking to refresh your skills, this tutorial is perfect for you. Download Source Code  Watch tutorial for more info 

Light and Dark Mode

Image
In this video, we'll build a simple yet effective light and dark mode toggle for your website using HTML, CSS, and JavaScript. You’ll learn how to implement a user-friendly switch that changes the theme of your webpage, enhancing the user experience. We’ll cover the basics of styling, JavaScript event handling, and local storage to remember the user's theme preference. Perfect for beginners and web development enthusiasts! What You'll Learn: Setting up your HTML structure Styling with CSS for light and dark themes Implementing JavaScript to toggle themes Saving user preferences with local storage Download source code

custom range slider

Image
Creating custom range slider in JavaScript wi th value increasing and decreasing ratio. the value will be increase against increasing range slider and same for decreasing. Watch video for more details Download source code

SQL basics

Image
How to create database in SQL DBMS How to create table in SQL database How to insert data in table how to Update data in SQL table how to delete table In this tutorial we are create database in SQL with name of HealthCare. there are two table in HealthCare database one of them I Doctor II Patient We insert data in Doctor table and in Patient Table rather then we update data in both table Watch tutorial for more info.

Validate form

Image
  How to validate from in JavaScript JavaScript form validation for beginner to advanced with source available. there are a simple form which include username, email, contact number, password and confirm password. Validate form validate username, validate email, validate phone number, validate password, validate confirm password. whenever user wrong input each in every field the form will be display error message under each input for more info please watch the complete tutorial. Download source code Watch tutorial for more details 

SQL update query

Image
How to update table in SQL database with GUI and update query. the GUI method is very simple and easy to update the data in SQL database table. we have Point Of Sale database with two table one of them is customer table we have update two record in this tutorial in the customer table. Update query standard pattern UPDATE table_name SET column1 = value1, column2 = value2, ... WHERE condition; Watch tutorial for more details 

SQL insert data

Image
How to insert data into table SQL is database managing software it mean SQL is DBMS we create database with name of POS point of sale and create table customer. in today tutorial we are inserting data into customer table with SQL query. INSERT INTO customer (customer_name, customer_contact, customer_address, customer_email, customer_plan) VALUES ('dove', '+698067..', 'center park street 3 house 4', 'dove@345gmial.com', 'plan CD') Watch tutorial for more info