- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What is the usage of and elements? Why they were introduced?
The elements <section> and <article> are useful for screenreaders as well and help visually impaired users in reading the content of your web page. These are beneficial for eBook readers as well.
Let us see how to work with both the elements.
<section>
<!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>
<article>
<!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>
- Related Articles
- What are Pagoda’s and why they were built?
- What is explosion, and why they are bad?
- The three elements predicted by Mendeleev from the gaps in his periodic table were known as eka-boron, eka – aluminium and eka-silicon. What names were given to these elements when they were discovered later on?
- Why were the early men called hunters and gatherers?A. They hunted for sport.B. They hunted animals and gathered plant products for food.C. They gathered a tribe and hunted the others.D. All of the above.
- Why are interfaces introduced in Java?
- What are the options and variables introduced in MySQL 8.0?
- Why The Earthworms Is Important To The Soil And Why They Always Present In The Soil.
- What is the meaning and usage of ‘=&’ assignment operator in PHP?
- Why were the early man called hunters and gatherers?
- Why CSS introduced when HTML was already creating wonders
- What are the main features and enhancements introduced in Java 9?
- What is the purpose and usage of SCROLLABLE CURSOR in COBOLDB2 program?
- What is the usage of ref, out, and in keywords in C#?
- What is the usage of join() method in JavaScript?
- What is the usage of in operator in JavaScript?

Advertisements