Skip to content

Instantly share code, notes, and snippets.

@erlehmann
Created December 12, 2010 19:51
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save erlehmann/738274 to your computer and use it in GitHub Desktop.
Save erlehmann/738274 to your computer and use it in GitHub Desktop.
Beispiel für die Verwendung des HTML5-Audio-Tags
<!DOCTYPE html>
<title>Beispiel für die Benutzung des Audio-Elements in HTML5</title>
<audio controls>
<source src="elvis.mp3">
<source src="elvis.oga">
<a href="elvis.mp3">Download (mp3)</a>
<a href="elvis.oga">Download (Ogg Vorbis)</a>
</audio>
<p>Die Links sind Fallback-Inhalte; sie werden nur in älteren Browsern angezeigt.</p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment