* 타이틀바 : <title></title>

* 주석 : <!-- -->

* 제목 : <h1></h1>


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!-- 주석 작성 -->
<html>     <!--태그-->
 <head>
  <!-- 문서의 정의 ,속성(눈에 보이지 않는다)-->
   <title>상단바 제목</title>
 </head>
 <body>
   <h1>제목1</h1>
   <h2>제목2</h2>
   <h3>제목3</h3>
   <h4>제목4</h4>
   <h5>제목5</h5>
   <h6>제목6</h6>        <!--6까지 존재-->
 
 </body>
</html>  <!-- <>부터 </> 까지가 엘리먼트 -->
cs



+ Recent posts