Creating a HTML table.
When you write an article in WordPress, Blogger etc., it may need to make a Table. But you don’t know how to create it. You can create a html table by using html code. Here is the code. Change the RED mark.
টেবিলটি দেখতে এরকম হবে: (Preview the Table)
অনলাইনে কোন লিখার সময় যদি টেবিল তৈরীর প্রয়োজন হয়, তখন কি করবেন।এ জন্য উপরের কোডটি দিলাম। কেবল লাল চিহ্নিত অংশটুকু চেঞ্জ করে দিলেই হবে।
আরো বেশী রো দরকার হলে
<table border="2" style="width:50%">
<tr>
<td>Kamal</td>
<td>Hasan</td>
<td>50</td>
</tr>
<tr>
<td>Mina</td>
<td>Ranu</td>
<td>94</td>
</tr>
<tr>
<td>Kalam</td>
<td>Jasmine</td>
<td>80</td>
</tr>
</table>
If you need more rows, simply copy & paste the following code <tr>
<td>Kamal</td>
before </table>
and change Kamal. This way you can create more and more rows. টেবিলটি দেখতে এরকম হবে: (Preview the Table)
Kamal
|
Hasan
|
50
|
Mina
|
Ranu
|
94
|
Kalam
|
Jasmine
|
80
|
আরো বেশী রো দরকার হলে
</table>
এর উপরে <tr>
<td>Kamal</td>
কোডটি বসিয়ে দিন। আরো রো তৈরী হয়ে গেল। এভাবে আপনি ইচ্ছেমতো রো তৈরী করতে পারবেন।
0 Comment to "Creating a HTML table."
Post a Comment