기타
html 기본 뼈대
coding captain
2021. 9. 8. 10:15
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>