Skip to content
This repository has been archived by the owner on Aug 28, 2019. It is now read-only.

Added details about HTML5 semantic tags. #8958

Merged
merged 1 commit into from
Oct 11, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/pages/html/page-structure/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ To create your pages in `HTML`, you need to know how to structure a page in `HTM

5º - Between the `<body>` and `</ body>` tags the page content is placed, which is what is displayed in the browser.

### Changes in HTML5

#### Introduction of semantic tags
Instead of using `<div>` for every other container several semantic(these tags help screenreaders which are used by visually
impaired) tags such as `<header>` `<footer>` . So it is advisable to use these tags instead of generic `<div>`.

#### More Information:
[HTML: Introduction](https://www.w3schools.com/html/html_intro.asp)