asimryu

html5 basic frame - 2

Sep 16th, 2014
315
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="ko">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>The HTML5 Basic</title>
  6. <meta name="description" content="The HTML5 Basic">
  7. <meta name="author" content="Webskills Group">
  8. <meta name="keywords" content="web,html,html5">
  9.  
  10. <style>
  11. /* CSS Style을 문서 안에서 직접 입력하여 사용할 때 */
  12. </style>
  13.  
  14. <!-- 외부에 저장된 CSS Style 파일을 불러올 때 -->
  15. <link rel="stylesheet" href="css/style.css">
  16.  
  17. <!-- 외부에 저장된 Script 파일을 불러올 때 -->
  18. <script src="js/script.js"></script>
  19.  
  20. <!-- IE9 하위 버전에 HTML5의 새로 추가된 요소(태그)들을 인식하하도록 함 -->
  21. <!--[if lt IE 9]>
  22. <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
  23. <![endif]-->
  24. </head>
  25. <body>
  26. <!-- 페이지에 표시할 내용 -->
  27. <script>
  28. /* JavaScript를 문서 안에서 직접 사용할 때 */
  29. </script>
  30. </body>
  31. </html>
Advertisement
Add Comment
Please, Sign In to add comment