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

HTML5에서 독립형 콘텐츠 만들기

<시간/>

태그를 사용하여 자체 포함된 콘텐츠를 만듭니다. HTML5 −

에서
태그를 구현하기 위해 다음 코드를 실행할 수 있습니다.

예시

<!DOCTYPE html>
<html>
   <head>
      <title>HTML figure Tag</title>
   </head>
   
   <body>
      <h2>Tutorialspoint Coding Ground</h2>
      <figure>
         <img src = "https://www.tutorialspoint.com/videotutorials/images/coding_ground_home.jpg"/>
      </figure>
   </body>
</html>