Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
For a basic example of how to put audio on a page using the new audio element, take a look at the code in Listing 8.1. The controls attribute has been added; otherwise, nothing would display on the user interface.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>8_1 Basic Audio Example</title>
</head>
<body>
<audio src="music.mp3" controls />
</body>
</html> |