1.

Describe HTML layout structure.

Answer»

Every web PAGE has different components to display the intended content and a specific UI. But still, there are few things which are templated and are globally ACCEPTED WAY to structure the web page, such as:

  • <header>: Stores the starting information about the web page.
  • <footer>: Represents the LAST section of the page.
  • <nav>: The navigation MENU of the HTML page.
  • <article>: It is a set of information.
  • <section>: It is used inside the article block to define the basic structure of a page.
  • <aside>: Sidebar content of the page.


Discussion

No Comment Found