Difference between revisions of "Semantic HTML"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(External links)
(External links)
Line 38: Line 38:
  
 
* [https://en.wikipedia.org/wiki/Semantic_HTML Semantic HTML] @ Wikipedia
 
* [https://en.wikipedia.org/wiki/Semantic_HTML Semantic HTML] @ Wikipedia
 +
* [https://www.w3.org/wiki/HTML_structural_elements HTML structural elements] @ w3.org
 +
* [https://www.w3.org/TR/html5/sections.html#headings-and-sections Headings and sections] @ w3.org
 +
* [https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Using_HTML_sections_and_outlines Usingg HTML sections and outlines] @ developer.mozilla.org
 +
* [http://www.w3schools.com/html/html5_semantic_elements.asp HTML5 semantic elements] @ w3schools.com
 +
  
 
[[Category:Artificial intelligence]]
 
[[Category:Artificial intelligence]]

Revision as of 09:02, 26 April 2016

Semantic HTML is the use of HTML markup to reinforce the semantics, or meaning, of the text in web pages and web applications, rather than merely to define its presentation or look.

Description

Semantic HTML is processed by traditional web browsers as well as by many other user agents. CSS is used to suggest its presentation to human users.

Examples

As an example, recent HTML standards discourage use of the italic tag:

<i>

The emphasis tag is semantically more accurate:

<em>

The CSS stylesheet should then specify whether emphasis is denoted by an italic font, a bold font, underlining, slower or louder audible speech, etc.

This is because italics are used for purposes other than emphasis, such as citing a source, for which HTML provides the cite tag:

<cite>

Another use for italics is foreign phrases or loanwords; web designers may use built-in XHTML language attributes or specify their own semantic markup by choosing appropriate names for the class attribute values of HTML elements (e.g. class="loanword").

Marking emphasis, citations and loanwords in different ways makes it easier for web agents such as search engines and other software to ascertain the significance of the text.

Separation of concerns

See Separation of concerns.

See also

External links