Html header example
- how to put header in html
- how to put heading in html
- how to make header in html
- how to put title in html
Header html
Header and footer in html.
HTML header Tag
The <header> tag is a semantic HTML element that is used to define the introductory or navigational content of a webpage or a section.
Typically, a header contains elements like:
- The website or page title
- Logo or branding
- Navigation menus
- Search bar
- Any introductory information relevant to the page or section
Note: Header tag cannot be placed within a <footer>, <address>, or another <header> element.
Syntax:
<header> ...</header>HTML <header> tag Example
Example 1:
In this example, the <header> tag is used inside the <article> element to define introductory content for that article.
Output:
- The <header> tag here contains:
- <h3>: ‘GeeksforGeeks Learning’
- <p> (Paragraph): ‘Posted by GFG’
- Another <p> (Paragraph): ‘A Computer Science portal for geeks’ – along with more information.
Important: The <header> is not just for the main page header (like a site title), bu
how to include header in html
how to add header in html form