Which HTML5 element is used to specify a header for a document or section?
Definition and Usage of HTML <header> Tag as follows:
The <header> element represents a container for introductory content or a set of navigational links of the application.
In HTML5, A <header> element typically contains the following:
Note: You can implement several <header> elements in one HTML document. However, <header> cannot be placed within an another <header> element, <footer> or <address>.
An example of a header for an <article> is as follows:
<article>
<header>
<h1>Slight Book heading here</h1>
<p>Posted by Chaitanya Kudumula</p>
<p>Additional information here about Slight Book</p>
</header>
<p>Slight Book Interview Questions....</p>
</article>
In HTML5, what does the <aside> element define?
Browsers remove extra spaces when displaying an HTML file.
Which HTML5 element defines navigation links?
Which HTML5 element is used to display a scalar measurement within a known range?
Which input type defines a week and year control (no time zone)?