HTML Audio
Play sound files using audio tag.
David Miller
November 27, 2025
5.5k189
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