<html>

<head>
    <META http-equiv="content=type" content="text/html; charset=utf-8"> <!--한글 깨짐 방지-->
    <!--주석-->
    화면에 표시되지 않는 정보 (타이틀, 인코딩정보 등등)<br />
</head>


<body>
    화면에 보이는 본체 (태그로 표현)<br />
    <u>밑줄</u><br /><B>굵게</B><br /><I>이탤릭</I><br />
    <font color="red" size="10" face="궁서">폰트를 변경했어요</font>
    <hr size="10" />
    <a href="https://jshyunn.tistory.com" target="_blank">나의 블로그</a><br />
    <img src="img.jpg" width=300 height=180 /><br />
    <table border=1>
    <tr>
        <th>아이디</th>
        <th>이름</th>
    </tr>
    <tr>
        <th>jsh</th>
        <th>장승현</th>
    </tr>
    <tr>
        <th>bbk</th>
        <th>바비킴</th>
    </tr>
    </table><br /><br /><br />
</body>

</html>