HTML
플레이어가 웹 페이지에서 숨기는 방식으로 너비와 높이를 설정합니다. 루프 속성이 추가되어 오디오가 다시 시작되는지 여부를 지정합니다.
다음 코드를 실행하여 백그라운드에서 웹 페이지의 사운드 파일을 재생할 수 있습니다.
예시
<!DOCTYPE html> <html> <head> <title>HTML background music</title> </head> <body> <p>The music is running in the background.</p> <p>(Song: Kalimba which is provided as a Sample Music in Windows)</p> <embed src="/html/Kalimba.mp3" loop="true" autostart="true" width="2" height="0"> </body> </html>