정의
head요소는 문서에 사용되는 메타데이터 집합을 나타냅니다.
설명
- HTML문서는 머리 부분(<head> ... </head>)과 본문 부분(<body> ... </body>)으로 나눌 수 있는데 머리 부분에 해당합니다.
예제
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | <!DOCTYPE HTML> < html > < head > < meta charset = "utf-8" > < title >오픈튜토리알스 html5사전 </ title > < link rel = "stylesheet" href = "default.css" > < link rel = "stylesheet alternate" href = "big.css" title = "Big Text" > < script src = "support.js" ></ script > < meta name = "applecation-name" content = "Open Tutorials" > </ head > < body > 오픈튜토리알스 html5강좌입니다. </ body > </ html > |