If you'd like to embed the audio on a page in Sitemaker (instead of just linking to the file), please follow these directions:
- Log into Sitemaker and click 'edit' next to your page.
- You will be taken to a page that asks you if you really wish to edit the page. Click the "Yes, Proceed to Edit" button to continue.
- In the edit window click the "Link" button
- Select the radio button for "My Files"
- Now you can upload one of your files by clicking the "Choose File" button, then clicking the upload button once you find the file.
- Once the file has uploaded, it will appear in the "My Files" window. At this point, you can close the popup window
Now you can embed the audio within your page. To do that, you'll need to edit the HTML for the page that will play the audio. Then you can add the embed code on this page: http://www.w3schools.com/html/html_sounds.asp
Please note, the section of that page labeled "The Best HTML Solution" has the code you'll need.
You'll just replace the audio files in your code with the actual filename for the audio clip. For example, if the file name is "soundclip1.mp3" and you uploaded that file to a folder named 'audio' on your site, then your embed code would look like this:
Code:
<audio controls="controls" height="50px width="100px">
<source src="audio/soundclip1.mp3" type="audio/mpeg" />
<embed height="50px width="100px" src="audio/soundclip1.mp3" />
</audio>
Last, be sure to publish the page in Sitemaker to make these adjustments live.