본문 바로가기

기타

html 기본 뼈대

 

test.html
0.00MB

 

html 구성

<!DOCTYPE html>
<html lang="en">
<head>
    <title>test</title>
    <meta charset="utf-8">
</head>
<body>
    <h2>HTML test</h2>
    <p>this is paragraph</p>

    <section>
        this is section
    </section>

    <footer>
        this is footer
    </footer>
</body>
</html>