HTML body, head & title 페이지

 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>


html <head> 에서 <title>  tag 반영 결과



 코드를 친 결과  crome  웹브라우져 타이틀에 <title> 에 적힌 내용이 반영되어 있다. 

댓글 없음:

댓글 쓰기

css cheat sheet 클래스 선택자, margin(마진), display , center 조정 간단한 구성 요소

 앞에서는 html의 간단한 sheet를 소개 하였습니다.   html은  주로 골격을 나타나는 것이라, 디자인을 하는데는 css로 하여야 합니다.  아래 코드와 같이 css 관련 하여 매우 간단하게 코딩 하겠습니다.  body 부분의 css 코딩  ...