<tfoot>
: HTML টেবিল ফুট উপাদান (The HTML Table Foot element)। HTML <tfoot>
ট্যাগটি টেবিলে ফুটার যোগ করতে ব্যবহৃত হয়। এটি টেবিলের প্রতিটি অংশ নির্দিষ্ট করতে <thead>
এবং <tbody>
ট্যাগের সাথে ব্যবহার করা হয়। <tfoot>
ট্যাগ হল <table>
এর একটি চাইল্ড ট্যাগ এবং <tr>
এবং <td>
এর একটি প্যারেন্ট ট্যাগ। এটি অবশ্যই <table>
উপাদানের ভিতরে ঘোষণা করতে হবে, <caption>
, <colgroup>
(যদি থাকে), এবং <thead>
উপাদানগুলির পরে। HTML টেবিল ফুট উপাদান (The HTML Table Foot element) সম্পর্কে বিস্তারিত নিচে দেওয়া হল।
Example:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML MASTER JHUTANDA</title>
<!--https://jhutanda.com-->
<!--https://github.com/jhutanda-->
</head>
<body>
<h1>table footer</h1>
<table>
<!-- table header -->
<thead>
<tr>
<th>head</th>
<th>head</th>
<th>head</th>
</tr>
</thead>
<!-- table body -->
<tbody>
<tr>
<td>data</td>
<td>data</td>
<td>data</td>
</tr>
<tr>
<td>data</td>
<td>data</td>
<td>data</td>
</tr>
</tbody>
<!-- table footer -->
<tfoot>
<tr>
<th>footer</th>
<th>footer</th>
<th>footer</th>
</tr>
</tfoot>
</table>
</body>
</html>