Create your own awesome FAQ Accordion

Introduction Ever wondered if we could create a FAQ Accordion like Bootstrap using only HTML, CSS, JavaScript and jQuery on your own. The answer is YES. Sample Bootstrap Accordion: https://getbootstrap.com/docs/5.0/components/accordion/ Below is the accordion project sample image: FAQ Accordion Layout in HTML (index.html) The layout for this project contains a div with class “accordion” with …

Create your own awesome FAQ Accordion Read More »

JavaScript Form Validation with error messages

Introduction The data sent from any form is sent to the server for processing and saved to the database. However, before sending the data for processing, it is necessary to have the data filled properly in correct format, known as client side validation. To validate data with error messages, JavaScript Form Validation techniques can be …

JavaScript Form Validation with error messages Read More »

Create a Todo Project using HTML, CSS and JavaScript

Introduction Create a Todo Project using HTML, CSS and Vanilla JavaScript along with LocalStorage. Below is the project demo image. View More: Projects Creating Todo Form Layout in HTML (index.html) The HTML layout for this project is very simple. We have a div with class “todo-container” and have a form inside it. The form only …

Create a Todo Project using HTML, CSS and JavaScript Read More »

Discover Modular Programming in QBASIC

Introduction Modular programming is an approach to programming where a program is divided into smaller programs or sub-programs. QBASIC supports modular programming in which a program is divided into the main module and its sub-modules (also known as procedures) where each sub-module has its own name and independent functionality. Types of procedures There are two …

Discover Modular Programming in QBASIC Read More »

Understand Data Types in Python For Sure

Introduction Data types are basically the type of data that can be stored in a variable. There are five standard data types in python described below. Data Types in Detail Numbers: Python numbers data type store numeric values. Python supports integers (whole numbers: int and long), floating-point numbers (numbers with decimals: float), and complex numbers. …

Understand Data Types in Python For Sure Read More »