হেডার ব্যবহার করুন৷ HTML-এ অ্যাট্রিবিউট এক বা একাধিক হেডার সেল যোগ করতে একটি সেল HTML-এ সম্পর্কিত।
উদাহরণ
আপনি হেডার বাস্তবায়ন করতে নিম্নলিখিত কোড চালানোর চেষ্টা করতে পারেন বৈশিষ্ট্য −
<!DOCTYPE html> <html> <head> <style> table, th, td { border: 2px solid blue; } </style> </head> <body> <table style = "width:100%"> <tr> <th id = "name">Subject ID</th> <th id = "email">Subject Name</th> </tr> <tr> <td headers = "name">001</td> <td headers = "email">Mathematics</td> </tr> </table> </body> </html>