According to <a href="http://www.w3schools.com/html5/tag_doctype.asp">http://www.w3schools.com/html5/tag_doctype.asp</a><div>there is no html5 declaration using "html5".  </div><div><br></div><div>It's example is:</div>
<div><br></div><div><span class="Apple-style-span" style="font-family: verdana, helvetica, arial, sans-serif; font-size: 12px; background-color: rgb(229, 238, 204); "><h2 class="example" style="font-family: verdana, helvetica, arial, sans-serif; font-size: 14px; margin-top: 0px; margin-bottom: 10px; background-color: transparent; color: rgb(97, 127, 16); ">
Example</h2><p style="font-family: verdana, helvetica, arial, sans-serif; ">The <!DOCTYPE> declaration for HTML5:</p><div class="example_code notranslate" style="width: 606px; background-color: rgb(255, 255, 255); padding-top: 4px; padding-right: 4px; padding-bottom: 4px; padding-left: 4px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: rgb(212, 212, 212); border-right-color: rgb(212, 212, 212); border-bottom-color: rgb(212, 212, 212); border-left-color: rgb(212, 212, 212); font-size: 13px; font-family: 'courier new'; ">
<!DOCTYPE html><br><html><br><head><br><title>Title of the document</title><br></head><br><br><body><br>The content of the document......<br></body><br><br></html></div>
</span><div class="gmail_quote"><br></div><div class="gmail_quote">Of course browsers tend to silently</div><div class="gmail_quote">ignore tags and options that aren't</div><div class="gmail_quote">valid, so if you replaced "html" above</div>
<div class="gmail_quote">with "html5", you'd think you were on</div><div class="gmail_quote">your way.</div><div class="gmail_quote"><br></div><div class="gmail_quote">Does it seem at all strange that </div>
<div class="gmail_quote">"DOCTYPE hmtl" implies html5?</div><div class="gmail_quote">Without it, any html5 tags would be</div><div class="gmail_quote">ignored of course, but why not "html5?"</div><div class="gmail_quote">
<br></div><div class="gmail_quote">   -- Bob</div><div class="gmail_quote"><br></div><div class="gmail_quote"><br></div><div class="gmail_quote"><br></div><div class="gmail_quote">On Thu, Nov 17, 2011 at 4:43 PM, Topher <span dir="ltr"><<a href="mailto:topher@codeventure.net">topher@codeventure.net</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><div class="im">On 11/17/2011 04:27 PM, Bob Kline wrote:<br>
> <!DOCTYPE html5><br>
> <body><br>
> <audio controls="controls"><br>
> <source src="kk.mp3" type="audio/mp3" /><br>
> Your browser does not support the audio tag.<br>
> </audio><br>
> </body><br>
> </html5><br>
><br>
><br>
> The file is called xx.html5<br>
<br>
</div>I'm assuming your web server knows how to deal with .html5 files.<br>
<br>
In your code sample above there's no <head></head>, and there's no<br>
<html></html>.  This would cause the file to not be valid html, and<br>
could easily make the browser freak out.  Here's the proper code:<br>
<br>
<br>
<!DOCTYPE html5><br>
<html><br>
        <head><br>
                <title>Bob's awesome audio</title><br>
        </head><br>
<div class="im">        <body><br>
                <audio controls="controls"><br>
                        <source src="kk.mp3" type="audio/mp3" /><br>
                        Your browser does not support the audio tag.<br>
                </audio><br>
        </body><br>
</html><br>
<br>
</div>Indenting is not necessary, I just did it for clarity.<br>
<br>
Keep in mind that Firefox won't play mp3's and I don't think IE will<br>
play ogg.  That's why they made it possible, and suggest, that you put<br>
source tags for both audio formats.  The browser plays the one it can.<br>
<br>
All that said, you might want to check out <a href="http://mediaelementjs.com/" target="_blank">http://mediaelementjs.com/</a><br>
<br>
It's a small javascript app that detects browsers nicely and makes an<br>
html5 player with the proper file format and falls back to flash when<br>
the browser can't do html5.<br>
<div class="HOEnZb"><div class="adm"><div id="q_133b390185eef20f_4" class="ajR h4"><div class="ajT"></div></div></div><div class="h5"><br>
--<br>
This message has been scanned for viruses and<br>
dangerous content by MailScanner, and is<br>
believed to be clean.<br>
<br>
_______________________________________________<br>
grlug mailing list<br>
<a href="mailto:grlug@grlug.org">grlug@grlug.org</a><br>
<a href="http://shinobu.grlug.org/cgi-bin/mailman/listinfo/grlug" target="_blank">http://shinobu.grlug.org/cgi-bin/mailman/listinfo/grlug</a><br>
</div></div></blockquote></div><br></div>
<br />-- 
<br />This message has been scanned for viruses and
<br />dangerous content by
<a href="http://www.mailscanner.info/"><b>MailScanner</b></a>, and is
<br />believed to be clean.