기본 콘텐츠로 건너뛰기

[DEVELOPMENT]HTML5-Markup

HTML5 기본 마크업
웹개발할때는 잊지 않고 바로 사용하자!

<!doctype html>
<html>
  <head>
    <meta charset="UTF-8">
    <title>Example document</title>
  </head>
  <body>
    <p>Example paragraph</p>
  </body>
</html>
cs

코드 보러 가기 : https://jsfiddle.net/iameeo/0jtz3hwp/3/

댓글