반응형

I HTML 시작하기 

노트패드(Notepad)++; Ubuntu 18.04 LTS; 자바(JAVA); MySQL; 아파치(Apache); 톰캣(Tomcat);

 

리눅스(Linux) 우분투(Ubuntu) 설치    https://tlo-developer.tistory.com/2

 

리눅스(Linux) 웹프로그래밍 설정        https://tlo-developer.tistory.com/37

 

리눅스(Linux) 루트(ROOT) 권한 원격 접속 허용    https://tlo-developer.tistory.com/57

 

노트패드(Notepad) ++ 설치              https://tlo-developer.tistory.com/60

 

 

1. 노트패드 NppFTP 기본경로 설정




2. Profile settings




3. 지정한 기본 경로에 새로운 디렉터리(폴더) - 파일(html) 생성



1
2
3
4
5
6
7
8
9
10
11
<!DOCTYPE html>
<html lang="ko">
    <head>
        <meta charset="UTF-8">        
        <meta http-equiv="Content-Type" content="text/html">
        <title>HTML</title>
    </head>
    <body>
        <h1>Hello World!!</h1>
    </body>
</html>
cs



4. 웹 브라우저에서 Hello World 확인







반응형