<html> 기본 문서 세팅

<html> 기본 문서 세팅

 

 

HTML5 기본 문서 세팅(css style sheet, script를 제외한 세팅법입니다.)

각각 태그와 속성의 의미를 올바르게 이해하고 암기해야합니다.

<!DOCTYPE html>
<html lang="ko">
<head>
    <meta charset="UTF-8">
    <meta name="description" content="">
    <meta name="keywords" content="">
    <title></title>
</head>
<body>
</body>
</html>
<!DOCTYPE html> <!--문서선언-->
<html lang="ko"> <!--문서시작:언어설정-->
<head> <!--문서정보시작-->
    <meta charset="UTF-8"> <!--문자인코딩설정-->
    <meta name="description" content=""> <!--문서정보-->
    <meta name="keywords" content=""> <!--검색키워드설정-->
    <title></title> <!--문서제목설정-->
</head> <!--문서정보종료-->
<body> <!--본문시작-->
</body> <!--본문종료-->
</html> <!--문서종료-->

 

 

 

HTML 작성 추천 프로그램

https://code.visualstudio.com/

 

Visual Studio Code - Code Editing. Redefined

Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications.  Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows.

code.visualstudio.com

https://www.sublimetext.com/

 

Sublime Text - A sophisticated text editor for code, markup and prose

Goto Anything Use Goto Anything to open files with only a few keystrokes, and instantly jump to symbols, lines or words. Triggered with Ctrl+P⌘+P, it is possible to: Type part of a file name to open it. Type @ to jump to symbols, # to search within the f

www.sublimetext.com

https://atom.io/

 

A hackable text editor for the 21st Century

At GitHub, we’re building the text editor we’ve always wanted: hackable to the core, but approachable on the first day without ever touching a config file. We can’t wait to see what you build with it.

atom.io

 

 

 

 

  Comments,     Trackbacks