이번에는 index01.html 문서의 <body> 태그 안에 <footer>, <h1>, <p> 태그를 추가하고 다시 index02.html로 저장합니다.
예제 소스 Exercise/5장/1_inheritance/index02.html
<body> <header> <h1>header h1</h1> <p>header p</p> </header> <footer> <h1>footer h1</h1> <p>footer p</p> </footer> </body>