There are a few different ways that you can add audio to Wix. You can either use an HTML5 audio player, or you can use a Flash audio player.
If you want to use an HTML5 audio player, then you can use the <audio>
tag. This is a simple way to add an audio player to your Wix site. All you need to do is add the following code to your site:
Exciting update! We've collaborated with Wix to offer WBI users with a free plan for all website creation needs - Explore the details here.
<audio src="URL of your audio file"></audio>
You can also style the audio player using CSS. For example, you could add the following CSS to make the audio player invisible:
audio {
display: none; }
If you want to use a Flash audio player, then you can use the <embed>
tag. This is a slightly more complex way to add an audio player to your Wix site, but it has the advantage of being compatible with older browsers.
To use this method, you first need to upload your Flash audio player to a third-party website. Then, you can add the following code to your Wix site:
<embed src="URL of your Flash audio player"></embed>
You can also style the Flash audio player using CSS. For example, you could add the following CSS to make the Flash audio player invisible:
embed {
display: none; }
Adding Audio with an HTML5 Audio Player
To add an HTML5 audio player to your Wix site, follow these steps:
1. Find or create an HTML5 audio player that you want to use.
2. Upload the HTML5 audio player files to a third-party website.
3. Add the following code to your Wix site:
<audio src="URL of your HTML5 audio player"></audio>
4. Style the HTML5 audio player using CSS (optional).