Your cart
  • IMG
    {{cart_item.name}}
    {{cart_item.variation_attribute_name}}: {{cart_item.variation_attribute_label}}
    {{cart_item.item_unit}}: {{ setCurrency(cart_item.price)}}
    {{ setCurrency(cart_item.price*cart_item.quantity)}}
    Invalid quantity more than stock
Total :
{{setCurrency(cart.sub_total)}}

There is no item in the cart. If you want to buy, Please click here.

HTML টেবিল ট্যাগ (table)

এইচটিএমএল(HTML) টিউটোরিয়াল

Created by : mamun_1
HTML,CSS,Javascript
tutorial
Programming, Software and application
213
2020-10-03 12:17:22

HTML টেবিল (table) ট্যাগ 


এইচটিএমএল টেবিলগুলি ওয়েব লেখকদের পাঠ্য, চিত্র, লিঙ্ক, অন্যান্য টেবিল ইত্যাদির মতো ডেটা সারণি এবং কক্ষগুলির কলামগুলিতে সজ্জিত করতে অনুমতি দেয়।


ওয়েব পেজে বিভিন্ন তথ্য বা উপাত্ত সুন্দর ভাবে ছক বা টেবিল আকারে উপস্থাপনের জন্য টেবিল তৈরি করা হয়। এছাড়া ওয়েব পেজের লেআউট তৈরি করার জন্যও টেবিল ব্যবহার করা টেবিল প্রদর্শন করার জন্য <table>...</table> ট্যাগ ব্যবহার করা হয়।

উদাহরণ :

<table style="width:100%">

  <tr>

    <th>Firstname</th>

    <th>Lastname</th>

    <th>Age</th>

  </tr>

  <tr>

    <td>Jill</td>

    <td>Smith</td>

    <td>50</td>

  </tr>

  <tr>

    <td>Eve</td>

    <td>Jackson</td>

    <td>94</td>

  </tr>

</table>