Insert an Audio File
Audio file ကို backgrround music ပံုစံ အေနနဲ႕ ထည့္သြင္းလုိ႕ရသလို controls ေတြကို ေဖာ္ျပထားျပီး user ကို play,pause လုပ္ခြင့္ေပးထးလုိ႕လည္း ရပါတယ္။
<!DOCTYPE html>
<html>
<head>
<title>Video</title>
</head>
<body>
<h1>Music</h1>
<audio src="music.mp3" controls>
Your browser does not support the video tag.
</audio>
</body>
</html>
ဒီ code ေလးမွာ controls ဆုိတာကို ထည့္ထားတဲ့ အတြက္ေၾကာင့္ play,pause button ေတြကို ျမင္ေနရပါလိမ့္မယ္။
background music အေနနဲ႕ဆုိရင္
<audio src="music.mp3" autoplay>
Your browser does not support the video tag.
</audio>
ဆုိျပီး အသုံုးျပဳႏိုင္ပါတယ္။ autoplay ေၾကာင့္ page load တက္လာတာနဲ႕ သီခ်င္းလာပါလိမ့္မယ္။ controls မပါတဲ့အတြက္ေၾကာင့္ music control ကို ျမင္ရမွာ မဟုတ္ပါဘူး။
Figure 12-2