Flux audio
| Nom | Valeur | Description |
|---|---|---|
| Attribute's name | Attribute's value | Attribute's description |
| autobuffer | true | false | Indicates the browser to load the audio event if it does not autoplay. |
| autoplay | true | false | If set to true, the audio will start playing as soon as it is ready. |
| controls | true | false | If set to true, the user is shown some controls, such as a play button. |
| loop | true | false | If specified, indicates that the audio is to seek back to the start upon reaching the end. |
| src | url | Defines the URL of the audio file. |
<audio src="file.wav">
<p>Alternative text</p>
</audio>