
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- 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 HTML5 tag should be used for filtering search results.
To filter search results, use the <header> element. The header should be in the section of the search results:
<section id = "results"> <h1>Search results</h1> <header id = "search-filters"> <!-- filters --> </header> <article> <!-- search result 1 --> </article> <article> <!-- search result 2 --> </article> <article> <!-- search result 3 --> </article> <article> <!-- search result 4 --> </article> </section>
Advertisements