HTML5 Fallback Content

HTML5 Fallback Content
HTML5 has a fallback content feature for some of its new tags in case the viewer's browser does not support a particular HTML5 element you have in your web document. This allows you to easily serve up alternate HTML markup or text to older browser software. People viewing with newer browsers that process the HTML5 tag will see the new HTML5 tag, and the Fallback Content is ignored.
HTML CODE EXAMPLE
<audio src="song1.mp3" controls="controls">
Place your fallback HTML content here
</audio>
In the code example above the person will see the words "Place your fallback HTML content here" or whatever HTML markup you want to show them, in the event that their browser software does not support that tag. And everybody else will see your sound player <audio> tag as it is intended.
Fallback content goes in the content area between the opening and closing HTML5 tag:
<html5tag> Fallback content goes here under content in the tag </html5tag>

Related Posts :

  • area area The HTML <area> element is usually used within a banner or image mapping scenar… Read More...
  • aside aside NOTE: This new element is HTML5 and will be a standardized element in 2014. The HTML … Read More...
  • audio audio The HTML audio element is used to play audio files and optionally offer stock control … Read More...
  • b b The HTML <b> element is used to make text inside it render as boldface typ… Read More...
  • article article NOTE: This new element is HTML5 and will be a standardized element in 2014. The art… Read More...

0 Response to "HTML5 Fallback Content"

Post a Comment