HTML body와 head 페이지 구성
html의 body와 head는 별도로 구성이 되어 있다. body 부분은 windows 웹 브라우져 메인에 보여 주는 내용을 적는 것이고, head는 별도로 내용을 적는다. head 태그는 meta, title 이외의 style, script, link와 같은 태그를 포함 할 수 있다.
아래의 예제는 body와 head를 나누어주는 것이다.
html 코드 샘플
<html>
<head>
<title>
This is the Title of the Page
</title>
</head>
<body>
<h1>
This is the body of the Page
</h1>
<p>
Anything within the body of a web page is displayed in the main browser
window.
</p>
</body>
</html>
댓글 없음:
댓글 쓰기