Batch Files

Lesson 1: Basics

First install Notepad++ or press Win + R, then type notepad. A white blank window will open.

Now type @echo off on the first line like this:

@echo off

Now let’s make some programs or scripts!

Type in echo Hello World!

Then add pause — it pauses the script.

Output:

Hello World!
Press any key to continue . . .

But that’s just the start. To learn real commands, visit:

HTML

HTML (HyperText Markup Language) is used to make websites — like this one!

The best way to learn is to download Visual Studio Code. Then make a folder named HTML or Websites, create a file called index.html, and open it in VS Code.

Some basic tags:

<html>

→ Defines the HTML document root.

<img>

→ Displays an image in the browser.

<h1>

→ Defines a heading (from h1 biggest to h6 smallest).

doc

→ Type it in Visual Studio Code to auto-generate a basic HTML template.