How end-user know whether the page is developed using semantic elements in HTML5? -


how end-user know whether page developed using semantic elements in html5? differences end-user can if use html5 semantic tags?

ok valid question , don't haters downvoted it.

here quick reminder:

non-semantic elements: example div , span - tell nothing content.

semantic elements: example form, table, , img - defines content.

http://www.w3schools.com/html/html5_semantic_elements.asp

for common user doesn't change see how displayed (the graphical result).but:

  • for , people work on code better if have well-organized code semantic elements used correctly.
  • accessibility : blind people , other people handicaps or diseases can't see , understand page display. have special navigators read them page quick summary based on h[1-6] elements ( basic example far more elaborated ).

read http://www.clarissapeterson.com/2012/11/html5-accessibility/ more in-depth explanations on matter.


Comments

Popular posts from this blog

java - Static nested class instance -

c# - Bluetooth LE CanUpdate Characteristic property -

JavaScript - Replace variable from string in all occurrences -