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. 2016Solution:
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.
পোস্টটি ভালো বুঝতে না পারলে এবং আরোও বিস্তারিত জানতে নিচের ভিডিওটি দেখুন।
এরকম আরো নতুন নতুন পোস্ট পেতে আমাদের ওয়েবসাইটটি ফলো করতে পারেন।
⧪⧪⧪আরো বিস্তারিত জানতে কমেন্ট করুন⧪⧪⧪
💬আরো পড়ুন এবং জানুন💬
- How To Create A Simple Website Using HTML And CSS
- Create a password field in HTML form
- Basic Forms | HTML Input
- PHP Calculating GPA
- Write the php code to calculate the display GPA in the web browser
- How to Insert Data Into MySQL Database Table & Retrieving data form database Using PHP
- How to Insert and retrieving data from MySQL database using Program
- Creating a new database & Table in mysql Databases
- How to create a table using html
- calculate the sum of two integers by inputting them through the keyboard.
- How To Make Drop Down Menu Using HTML And CSS
- Install and configure network devices: HUB, Switch and Router.
Post a Comment