I want to display an audio file in a JSF file, and this is my code. The problem is that, in my Eclipse editor, it always reminds that "Unknown tag (audio). " with a yellow warning in Eclipse. I test it in the web server, can's see anything related to the audio shown on the page.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core">
<!-- The template for our app, defines some regions -->
<body>
<div id="container" align="left">
<div id="header">
<img src="resources/images/logo.png" alt="logo photo" />
</div>
<br />
<div id="content">
<ui:insert name="content" />
</div>
<br style="clear: both" />
</div>
<audio src="resources/audio/test.wav" />
</body>
</html>