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

Commit

Permalink
Added details about HTML5 semantic tags. (#8958)
Browse files Browse the repository at this point in the history
  • Loading branch information
hionnode authored and QuincyLarson committed Oct 11, 2018
1 parent 1e63922 commit d52fb53
Showing 1 changed file with 5 additions and 0 deletions.
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)

0 comments on commit d52fb53

Please sign in to comment.