Computer >> Máy Tính >  >> Lập trình >> HTML

Tạo nội dung độc lập trong HTML5

Sử dụng thẻ

để tạo nội dung độc lập. Bạn có thể thử chạy mã sau để triển khai thẻ
trong HTML5 -

Ví dụ

<!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>