Site icon 엘스트림

html5 기본틀

html5라고 해서 특별하게 달라진 건 없고 doctype이 간단해 졌다.

html5를 사용하려면 다음과 같은 기본 틀을 사용해 주면 된다.

<!DOCTYPE html>
<html>
<head>
<meta charset=”UTF-8″>
<title>Title of the document</title>
</head>

<body>
Content of the document……
</body>

</html>

 

다 자세한 html5 레퍼런스를 알고 싶으면 명문 w3school을 방문 하자.

http://www.w3schools.com/html/html5_intro.asp

 

Exit mobile version