Guest User

Untitled

a guest
Dec 28th, 2015
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.38 KB | None | 0 0
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  2. "http://www.w3.org/TR/html4/loose.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4.     <head>
  5.         <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6.         <link rel="stylesheet" type="text/css" href="../_css/style.css">
  7.         <title>Bitwise Exercise</title>
  8.     </head>
  9.     <body data-bitOPType="and">
  10.         <article>
  11.             <h1>Bitwise Exercise</h1>
  12.            
  13.             <hr>
  14.            
  15.             <div id="backToBitDiv">
  16.                 <a href="../bitOp.html">
  17.                     <button id="backToBitButton">Back</button>
  18.                 </a>
  19.             </div>
  20.            
  21.             <p id="resultPar">0 / 0 Correct</p>
  22.            
  23.             <div id="exerciseDiv">
  24.                 <div id="calculationDiv">
  25.                     <p class="operationNumber" id="topBitOp"> </p>
  26.                     <p id="calculationType">AND</p>
  27.                     <p class="operationNumber" id="botBitOp"> </p>
  28.                 </div>
  29.                
  30.                 <form id="exerciseForm" onsubmit="return answerSubmit()" onreset="skipAnswer()">
  31.                     <p>
  32.                         Answer:
  33.                     </p>
  34.                     <input type="text" name="answer" autocomplete="off">
  35.                     <br><br>
  36.                     <input type="submit" value="Submit">
  37.                     <input type="reset" value="Skip">
  38.                 </form>
  39.                
  40.                 <p id="feedbackPar"> </p>
  41.             </div>
  42.         </article>
  43.     </body>
  44.     <script src="../_scripts/bitOPHandler.js"></script>
  45. </html>
Add Comment
Please, Sign In to add comment