Toggle navigation
☰
HTML
CSS
Scripting
Database
<!DOCTYPE html> <html> <head> <title>HTML Audio Example</title> </head> <body> <h2>Audio Player with Controls</h2> <audio src="/music/good_enough.mp3" controls> <p>Your browser does not support the audio element.</p> </audio> <p>The <code>controls</code> attribute provides the play/pause button, volume control, and other player features.</p> </body> </html>