Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
<!DOCTYPE html> <html> <head><title>HTML Audio</title></head> <body style="padding: 20px; font-family: Arial;"> <h2>Audio Player</h2> <p>This demo shows the audio element UI (no audio file loaded):</p> <audio controls style="width: 100%; max-width: 400px;"> <source src="audio.mp3" type="audio/mpeg"> Your browser does not support audio. </audio> <p><em>Note: Upload an actual .mp3 file to hear it play.</em></p> </body> </html>
Result
Open