diff --git a/README.md b/README.md
index 3e2e0342f742e0a5afa008ce7a2a38c1a66a3289..f8fa1f7e4b214a2cfe4ae18919f416ae3767c465 100644
--- a/README.md
+++ b/README.md
@@ -23,7 +23,7 @@
 
 ### 컴퓨터의 구성 요소(하드웨어)
 
-<img src="./img/computer_archi.PNG" width="550px" height="300px">
+<img src="./img/computer_archi.PNG">
 
 Storage에 파일(a.out)이 들어있고, CPU는 input과 output 모두 메모리를 거쳐야한다. 파일을 실행하기 위해서는 storage의 파일을 메모리에 적재해야 한다. Input과 output 사이에서 메모리와 연결하는 내용을 버퍼라고 한다.
 
@@ -63,7 +63,7 @@ tty를 통해 어떠한 터미널을 나에게 부여했는지 알 수 있다.
 로컬 레포지토리의 내용들을 외부 레포지토리로 보내는 명령어이다.
 
 ### 파이프 라인
-<img src="./img/pipe.PNG" width="550px" height="300px">
+<img src="./img/pipe.PNG">
 
 ``` main | output.txt ```
 
@@ -236,7 +236,7 @@ int const * const * A pointer to a constant pointer to a constant integer
 
 ### c언어의 컴파일 과정
 
-<img src="./img/compile_process.PNG" width="550px" height="300px">
+<img src="./img/compile_process.PNG" >
 
 #### 컴파일 과정
 1. 전처리기에 의해 전처리 과정을 거친다.