Level no.20
Header Tag in HTML Header tag is used for introduction of your content and define top section of your web-page or for navigational links, logos, icons and images. A header tag can nest in another header tag. Syntax: <header> data should be here. </header>. Code: <!DOCTYPE html> <html> <head> <title>My Website </title> </head> <body> <header> <h1> My Website </h2> <p>This is the header of your web-page</p> </header> </body> </html> Output: Navigation Tag in HTML Navigation tag <nav> is used to define section of web-page than contain navigational links.Links of web-page are in the navigation tag but not all the links are inside the navigation tag. Structuring the content of the web-page and determine that the enclosed links are part of the navigation tag.It is act like a container for putting links and logos. Syntax: <nav> <ul> <li> <a hr...