HTML 태그 - bgsound
본문
HTML 태그 - bgsound
<bgsound>태그는 문서에 배경음을 넣을 때 사용합니다. ie전용으로 html5에서 삭제된 태그입니다.
속성
src : 사운드의 url을 지정합니다.
loop : 사운드의 실행되는 횟수를 지정합니다.
volume : 사운드의 음량을 결정합니다. -10,000과 0사이의 숫자로 정의.
샘플
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="author" content="코리아뉴스" />
<title> html공부 </title>
<link rel="stylesheet" type="text/css" href="default.css" / >
<style type="text/css">
body {
color:red;
}
</style>
<bgsound src="sample.mid" loop="infinite"> </head> <body> <section> <h1>bgsound태그</h1> <p>문서에 배경음을 넣을 때 사용합니다.</p> </section> <div id="related"> <p>영역 </p> <div> <footer> <address> 전화 : 031-574-3659, E-mail : master@koreanews.com </address> Copyright ⓒ 2013 Koreanews co., All Rights Reserved. </footer> </body>
</html>
- 이전글HTML 태그 - big 14.12.11
- 다음글HTML 태그 - bdo 14.12.11