">

">

">
<html>

<head>
</head>

<body>
	<h1>heading 제목 태그 (1~6)</h1>
	<p>
		문단 
		<strong>꾸며주는 태그 , 강조 태그</strong>
		<u>text 밑줄</u>
		줄바꿈 <br/>
		밑줄 , 선 <hr/>
	</p>
	
	<pre>
		입력된 문자 그대로 보여주는 태그
		띄어쓰기 단락 구분을 그대로 보여준다.
	</pre>	

	<button>버튼</button>
	<textarea>입력창</textarea>

	<h1>tag + attribute</h1>
	<p>
		<img src="이미지 경로" alt="해당이미지 없을시 나옴"/>
		<!-- html 주석
		<div style="background-image:url("이미지 경로")" />
		-->
	</p>
</body>

</hmtl>
<!-- tag display -->

<div> div tag는 대표적인 block 요소이다 </div>

<span> span tag는 대표적인 inline 요소이다 </span>

<div>
	 block은 전체 , inline은 부분 요소
	 css diplay property로 변경 가능 
</div>
<table border="1">
    <th>테이블</th>
    <th>만들기</th>
    <tr>{/* 첫번째줄 */}
        <td>1row-1column</td>
        <td>1row-2column</td>
    </tr>
    <tr>{/* 두번째줄 */}
        <td>2row-1coloumn</td>
        <td>2row-2column</td>
    </tr>
</table>