<!DOCTYPE html>
<html>
<head>
<title>Play Audio</title>
</head>
<body>
<audio controls>
"audio_file.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</body>
</html>
在这个示例中,<audio>标签包含一个子标签,用于指定音频文件的路径和文件类型。用户可以通过控件来控制音频的播放、暂停、音量等。当浏览器不支持<audio>标签时,会显示“Your browser does not support the audio element.”的文本。