diff --git a/worksheet1/README.md b/worksheet1/README.md
index 90dc5cb271f35300f1c1bca590008e4421fe72ab..94cd09bfae1fe5d6c7122e57cf625aaf4b545e92 100644
--- a/worksheet1/README.md
+++ b/worksheet1/README.md
@@ -68,7 +68,7 @@ Output:
 ```
 **Task 1.2: User-Defined Addition**
 
-![Reference Image](/home/nguyen13-minh/ws-os/worksheet1/image/1.2.png)
+![Reference Image](image/1.2.png)
 Extends Task 1.1 to accept user input for two integers and prints their sum with a formatted message.
 
 Implementation Steps:
@@ -101,7 +101,7 @@ The sum of 15 and 6 is: 21
 #Task 2.1
 
 Task 2.1: User Interaction and Validation
-![Reference Image](/home/nguyen13-minh/ws-os/worksheet1/image/2.1.png)
+![Reference Image](image/2.1.png)
 
 This task implements a program that:
 1 Prompts the user for their name and a number between 51 and 99.
@@ -129,7 +129,7 @@ The number must be greater than 50 and less than 100!
 ```
 #Task 2.2
 Task 2.2: Array Initialization and Summation
-![Reference Image](/home/nguyen13-minh/ws-os/worksheet1/image/2.2.png)
+![Reference Image](image/2.2.png)
 
 The program initializes an array with values from 1 to 100, computes their sum, and prints the result.
 
@@ -158,7 +158,7 @@ Sum of array: 5050
 ```
 #Task 2.3
 Task 2.3: Summing a Range in an Array
-![Reference Image](/home/nguyen13-minh/ws-os/worksheet1/image/2.3.png)
+![Reference Image](image/2.3.png)
 
 Enhances Task 2.2 by allowing the user to specify a range of indices and computes the sum of elements within that range.
 
@@ -195,7 +195,7 @@ Objective:
 The Makefile automates the compilation of all tasks for streamlined testing and execution.
 
 **Sample Makefile:**
-![Reference Image](/home/nguyen13-minh/ws-os/worksheet1/image/Makefile.png)
+![Reference Image](image/Makefile.png)
 ```
 all: task1 task1.2 task2.1 task2.2 task2.3