How to Create & Delete File with Command Line on Windows

This post covers how to create and delete files with command line also called cmd on Windows OS. I am using Windows 10 but these commands should work on Windows 7, windows 8 and windows 11 too. Create an empty file with desired filename and file extension Echo with command line in a file echo […]

Write a C Program, Compile & Run on Windows 10

Run and Compile a C program on Windows 10 using gcc Compiler (MinGW). Make sure you have installed mingw on your system. Write a C program that takes input from the user then displays the greeting message. This is a step by step tutorial so fire up your favorite text editor and code along. I […]

HTML Basic Knowledge

In this post I will tell you about basic HTML, such as creating a simple page in HTML and showing you the Anatomy of HTML Elements and HTML Document and defining some other tags. With code and visual images that will help you understand HTML basic information. Let’s dive in… HTML (Hypertext Markup Language) It […]

Introduction to CSS

In this post I am going to show you basic styling code on an HTML page which is very easy to use or learn. With codes and visual images that will help you understand CSS codes. What is syntax, selector and also show how to add a style-sheet in HTML file and how many ways […]

HTML 5 Elements

In this post you will learn what are the elements in HTML and how they work, I’m going to demonstrate with codes and visual images that will help you understand how the tags created and used to display heading, paragraph, forms, images, links, list of items and more. HTML stands for Hyper Text Markup Language, […]

HTML 5 – How to Create Table

In this post you will learn how to create different types of tables in HTML 5, I’m going to demonstrate with codes and visual images that will help you understand how table tags and its children tags work in HTML 5. Let’s dive in… There are three sections in <table> tag: <thead>, <tbody>, and <tfoot>. […]

HTML 5 Radio Buttons & Check Boxes

In this post you will learn about radio buttons & check boxes with codes & visual images; that will help you understand how radio-button and check boxes work in HTML 5 easily. When you have multiples options & you have to make one choice then you use the radio buttons. Like – in a restaurant […]