XHTML+Voice

<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ev="http://www.w3.org/2001/xml-events">
<head>
  <title>Example 3: Drink dispenser</title>
  <vxml xmlns="http://www.w3.org/2001/vxml" id="drinkform">
    <field name="drink">
      <prompt>Would you like coffee, tea, or milk?</prompt> 
      <grammar><![CDATA[   
        #JSGF V1.0;
        grammar drinks;
        public <drinks> = coffee | tea | milk
       ]]>
      </grammar>
      <filled>
        <block>Sorry, I'm out of <value expr="drink"/>.</block>
      </filled>
    </field>
  </vxml:form></head>
<body ev:event="load" ev:handler="#drinkform">
<h1>Example 3: Drink dispenser</h1>
<p>Our drink dispenser can offer you a wide choice of refreshing drinks.</p>
</body>
</html>

30