音声を再生できる「audio要素」|HTML5課題17
解答
プレビュー
↓スマートフォンの方はこちらからプレビューできます。
音声を再生できる「audio要素」
コード
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="UTF-8"> <title>音声を再生できる「audio要素」</title> <link rel="stylesheet" href="#"> <script src="#"></script> <!--[if lte IE 9]> <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <!--[if lte IE 9]> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <![endif]--> <style> article, aside, dialog, figure, footer, header, hgroup, menu, nav, section { display: block; } </style> </head> <body> <h1>サンプル音声を再生</h1> <audio src="http://webgaku.hotcom-web.com/image/sample.mp3" controls> <p>ブラウザで再生できない方は<a href="http://webgaku.hotcom-web.com/image/sample.mp3">音声のダウンロード</a>をどうぞ。</p> </audio> <p>※モーツァルトが流れます。</p> </body> </html>