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

HTML로 표에 대한 캡션을 만드시겠습니까?


태그를 사용하여 표에 캡션을 추가하십시오. HTML에 테이블 캡션을 포함하기 위해 다음 코드를 실행할 수 있습니다 -

예시

여기에 "Indian Cricketers"라는 표 캡션을 추가했습니다. −

<!DOCTYPE html>
<html>
   <head>
      <style>
         table, th, td {
         border: 1px solid black;
         }
      </style>
   </head>
   <body>
      <h2>Cricketers</h2>
      <table style = "width:100%">
         <caption>Indian Cricketers</caption>
         <th>Name</th>
         <tr>
            <td>Sachin Tendulkar</td>
         </tr>
         <tr>
            <td>Virat Kohli</td>
         </tr>
      </table>
   </body>
</html>