HTML
Design you web page by yourself
Sounds and videos
Html supports many common sounds and video files format such as .wav , .mid , .mp3 , .au. , .mov , wmp ,mpg.
To add sounds or videos to your web page, you have to use <embed> </embed> tags.
syntax
<embed src="filename.ext" width="x" height="x" autoplay="x" hidden="x" loop="x" volume="x"></embed>
autoplay="true" Playing sounds automatically start
autoplay="false" Sound starts when user hits the play button
hidden="true" Control box is hidden
hidden="false" Control box is shown in the browser
loop="true" Sound file plays and repeat again and again
loop="False" Sound file play one time only
volume="x" x is the volume value between 1 and 100 ,default is 50
Height and width Sets the controls height and width
Example
<embed src="mosart.mid" width="145" height="60" autoplay="false"></embed>
<embed src="film.avi" width="145" height="60" autoplay="false"></embed>