Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

HTML 문서에 섹션을 어떻게 포함합니까?


섹션을 추가하려면 HTML에서

태그를 사용하세요. 다음 코드를 실행하여 HTML 문서에 섹션을 포함할 수 있습니다. -

예시

<!DOCTYPE html>
<html>
   <head>
      <title>HTML Section Tag</title>
   </head>
   <body>
     <section>
        <h1>Java</h1>
        <h3>Inheritance</h3>
        <p>Inheritance defines the relationship between superclass and subclass.</p>
     </section>
   </body>
</html>