Project

General

Profile

Audio (MP3) files on Pubwriter

Added by Brian Schwartz about 8 years ago

Here's the HTML snippet you'll need to use if you want to embed audio on your PubWriter page:

Just insert the HTML that looks like this:

<audio src="http://URL.mp3" controls> </audio>

You can see this page 'live' at http://www.pubwriter.com/tutorials/audio.md

You can also set it up to:

Autoplay

<audio src="http://URL.mp3" autoplay> </audio>

Loop

<audio src="http://URL.mp3" loop> </audio>

Preload

<audio src="http://URL.mp3" controls preload> </audio>