HTML Audio
Play sound files using audio tag.
David Miller
Nov 25, 2025
37.8k1,020
Audio tag plays sound files.
## Example
```html
<audio controls>
<source src="sound.mp3" type="audio/mpeg" />
</audio>
```
## UI Preview
Audio player with play button.
## Used for
- podcasts
- alerts
- background sounds
#HTML#Media