How to create a table using html ।। সহজেই এইচটিএমএল দিয়ে টেবিল তৈরি করবেন যে ভাবে

Question: Explain the way using HTML code in which data can be presented in a table form as given below. 2016



Solution:

The Process of Use: If you make a table using HTML, at fast create a html page.
Example: table.html

Then copy and past the html code given below into the html page( table.html).Then save the html page and open in the browser.

ব্যবহার প্রক্রিয়া: আপনি যদি এইচটিএমএল(html) দিয়ে সহজেই একটি টেবিল তৈরি করতে চান তাহলে প্রথমেই এইচটিএমএল (html) এর একটি পেজ (page) তৈরি করে নিন ।
যেমন: table.html

তারপর নিচে দেওয়া এইচটিএমএল(html)  এর Code কপি করে আপনার তৈরি করা এইচটিএমএল(html) পেজে(page) পেস্ট করুন তারপর পেজটি সেভ(save) করে ব্রাউজারে(browser) ওপেন করুন ।


Source Code:

<!DOCTYPE html>
<html>

<head>
          <title>Create a table with html</title>
</head>

<body>
         <table border="1" width="400px">
                  <tr>
                         <th colspan="2">CSE</th>
                  </tr>
                  <tr>
                         <td width="50%">Semester</td>
                         <td width="50%">1</td>
                  </tr>
                  <tr>
                         <td></td>
                         <td>2</td>
                  </tr>
                  <tr>
                         <td></td>
                         <td>3</td>
                  </tr>
         </table>
</body>
</html>


Screenshot of Source Code(Sublime Text):



View Browser:


If you do not understand the post,watch the video below.

পোস্টটি ভালো বুঝতে না পারলে এবং আরোও বিস্তারিত জানতে নিচের ভিডিওটি দেখুন।




এরকম আরো নতুন নতুন পোস্ট পেতে আমাদের ওয়েবসাইটটি ফলো করতে পারেন।


⧪⧪⧪আরো বিস্তারিত জানতে কমেন্ট করুন⧪⧪⧪


💬আরো পড়ুন এবং জানুন💬





Post a Comment

Previous Post Next Post