Created
December 12, 2010 19:51
-
-
Save erlehmann/738274 to your computer and use it in GitHub Desktop.
Beispiel für die Verwendung des HTML5-Audio-Tags
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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