<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>구조화된 문서 예제</title> </head> <body> <header> <h2>03장 문서 구조화와 웹 폼</h2> </header> <nav style="background-color: #ffe1a8"> <a href="../../index.html">Home</a> </nav> <section style="width: 100%; height: 250px;"> <article class="left" style="width: 40%; float: left;"> <h3>1절 문서 구조화</h3> <P>구조화된 문서 <a href="ex3-5_c.html" target="in-right">[ex3-5 코드]</a></p> </article> <article class="right" style="width: 60%; height: 245px; float: right"> <iframe name="in-right" width="100%" height="100%"></iframe> </article> </section> <footer style="background-color: #eaf5ef"> Examples in Chapter 03. </footer> </body> </html>