info343/lectures/ajax-with-xml/files/animalgame.html

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

   <head>
      <!--
      animalgame.html
      HTML skeleton for Animal Game lecture example
      INFO 343, Autumn 2012
      Morgan Doocy
      (From CSE 190 M, Marty Stepp)
      -->
      <title>The Animal Game</title>
      
      <link href="/lectures/ajax-with-xml/animalgame.css" type="text/css" rel="stylesheet" />
      
      <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
      <script src="animalgame.js" type="text/javascript"></script>
   </head>
   
   <body>
      <h1>The Animal Game</h1>
      
      <p>Think of an animal, then let me guess it!</p>
      
      <div id="container">
         <fieldset id="question">
            <legend>Question</legend>
            <p id="questionparagraph">
               <!-- put the question text here -->
            </p>
         </fieldset>
         
         <fieldset id="answer">
            <legend>Answer</legend>
            <button id="yes">Yes</button>
            <button id="no">No</button>
         </fieldset>
      </div>
   </body>
</html>