2024-10-07

<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<!--
태그는 속성이라는 것을 줄 수 있음.
형식 : <시작태그 속성="값" 속성-"값"> 텍스트 내용 </끝태그>
-->
<h1 align="center">첫번째 제목 태그입니다.</h1>
<h1>두번째 제목 태그입니다.</h1>
<h1 align="center" style="background-color: blue; color: white;">세번째 제목 태그입니다.</h1>
</body>
</html>
