Lesson 3: Notepad | Introduction to Notepad
📘 Lesson 3: Notepad
3.1 Introduction to Notepad
Notepad is a simple text editor included with
Microsoft Windows. It allows you to create and edit plain text files. It is one
of the most basic applications in Windows, but very useful for beginners.
- File
Extension: .txt
- Purpose:
Writing notes, editing simple text, creating HTML or programming scripts.
- Advantages:
Lightweight, easy to use, available in all Windows versions.
- Limitations:
No advanced formatting (no bold, italic, underline, or images).
👉 Example: If you want to
quickly write a shopping list or save a small note, Notepad is the best option.
3.2 Features of Notepad
(A) Writing Text
- Open
Notepad → Type any text using the keyboard.
- Example:
“Welcome to Computer Basics Course.”
(B) Saving a File
- Click
File → Save As.
- Choose
location (Desktop, Documents).
- Type
file name (e.g., Notes.txt).
- Select
file type: Text Documents (*.txt).
- Click
Save.
(C) Opening a File
- Click
File → Open.
- Browse
location → Select file → Click Open.
(D) Editing Text
- Use
Cut (Ctrl + X), Copy (Ctrl + C), Paste (Ctrl + V).
- Use
Undo (Ctrl + Z) to reverse last action.
(E) Word Wrap
- Found
under Format Menu.
- If
enabled, text automatically moves to the next line when it reaches the
edge of the window.
(F) Font Settings
- Under
Format → Font, you can change font style, size, and script.
(G) Time/Date Insertion
- Shortcut
key F5 inserts current time and date into the file.
3.3 Uses of Notepad
- Writing
short notes.
- Creating
.txt files.
- Writing
basic HTML code for web pages.
- Editing
configuration files.
- Quick
draft writing.
3.4 Practical Examples
Example 1: Writing a Note
- Open
Notepad.
- Type:
(My First Computer Note. I am learning Notepad today.)
My First Computer Note I am learning Notepad today.
- Save
file as MyNote.txt.
Example 2: Creating HTML Page
- Open
Notepad.
- Type:
(<html>
<head><title>My First
Web Page</title></head>
<body>
<h1>Hello World!
</h1>
<p>This is my first HTML
page. </p>
</body>
</html>)
Hello World!
This is my first HTML page.
- Save
file as index.html.
- Double-click
file → It opens in browser.
3.5 Practical Exercises
- Write
a short paragraph about “My Computer Learning Journey” in Notepad and save
it.
- Create
a file named ShoppingList.txt with at least 5 items.
- Use
F5 to insert date and time in your file.
- Create
a simple HTML page using Notepad and open it in browser.
3.6 Review Questions
- What
is Notepad and what is its file extension?
- How
do you save a file in Notepad?
- What
is the difference between Word Wrap and Font settings?
- Which
shortcut key is used to insert date and time?
- Write
two uses of Notepad in daily life.
3.7 Summary
In this lesson, you learned:
- Notepad
is a simple text editor used for creating plain text files.
- You
can write, save, open, and edit text easily.
- Features
include Word Wrap, Font settings, and Time/Date insertion.
- Notepad
is useful for notes, lists, and even basic HTML coding.
Comments
Post a Comment