Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.83 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.   <head>
  4.     <meta charset="windows-1250">
  5.     <title>
  6.         Char screen
  7.     </title>
  8.      <script src="quest.js"></script>
  9.     <style>
  10.     p.small {
  11.     line-height: 0.7;
  12.     }
  13.     </style>
  14.   </head>
  15.   <body>
  16.         <h1>
  17.             Character screen
  18.         </h1>
  19.         <table>
  20.             <tr>
  21.             <th>Name:</th>
  22.             <th id="outputName"></th>
  23.             </tr>
  24.         </table>
  25.        
  26.         <input  type="text" id="nameInput" />
  27.         <input  type="submit" onclick="mcNameOutput();" />
  28.        
  29.         <table>
  30.             <tr>
  31.             <th>Age:</th>
  32.             <th id="outputAge"></th>
  33.             </tr>
  34.         </table>
  35.        
  36.         <input  type="text" id="ageInput" />
  37.         <input  type="submit" onclick="mcAgeOutput();" />      
  38.   </body>
  39. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement