উপাদান <বিভাগ> এবং <আর্টিকেল> স্ক্রিনরিডারদের জন্যও উপযোগী এবং আপনার ওয়েব পৃষ্ঠার বিষয়বস্তু পড়তে দৃষ্টি প্রতিবন্ধী ব্যবহারকারীদের সাহায্য করে। এগুলি ইবুক পাঠকদের জন্যও উপকারী৷
৷আসুন দেখি কিভাবে উভয় উপাদানের সাথে কাজ করা যায়।
<বিভাগ>৷
<!DOCTYPE html> <html> <head> <title>HTML Section Tag</title> </head> <body> <section> <h1>Java</h1> <h3>Inheritance</h3> <p>Inheritance defines the relationship between superclass and subclass.</p> </section> </body> </html>
<আর্টিকেল>
<!DOCTYPE html> <html> <body> <main> <h1>Learning</h1> <p>Learn to gain experience and try to share your knowledge with others.</p> <article> <h3>Web Development Tutorials</h3> <p>Consist of CSS, HTML, and PHP tutorials for 2nd Semester exams.</p> </article> <article> <h3>Academic Tutorials</h3> <p>Consist of Computer Fundamental, Computer Network tutorials for 1st Semester exams.</p> </article> </main> </body> </html>