Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!doctype html>
- <html lang="ko">
- <head>
- <meta charset="utf-8">
- <title>The HTML5 Basic</title>
- <meta name="description" content="The HTML5 Basic">
- <meta name="author" content="Webskills Group">
- <meta name="keywords" content="web,html,html5">
- <style>
- /* CSS Style을 문서 안에서 직접 입력하여 사용할 때 */
- </style>
- <!-- 외부에 저장된 CSS Style 파일을 불러올 때 -->
- <link rel="stylesheet" href="css/style.css">
- <!-- 외부에 저장된 Script 파일을 불러올 때 -->
- <script src="js/script.js"></script>
- <!-- IE9 하위 버전에 HTML5의 새로 추가된 요소(태그)들을 인식하하도록 함 -->
- <!--[if lt IE 9]>
- <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
- <![endif]-->
- </head>
- <body>
- <!-- 페이지에 표시할 내용 -->
- <script>
- /* JavaScript를 문서 안에서 직접 사용할 때 */
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment