Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.79 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <!-- HTML file-->
  4.  
  5. <html>
  6. <head>
  7.     <link rel = "stylesheet" type="text/css" href="assign2.css" media="all">
  8.     <script src = "assign2v2.js"></script>
  9. </head>
  10. <body>
  11.     <br>
  12.     <br>
  13.     <!-- setting up title -->
  14.     <h1> The Multiplication Table Challenge </h1>
  15.  
  16.     <!-- create input box to get users input -->
  17.     <p id="input">
  18.     Size: <input id ="input1" type="text" name= 'subject' value="">
  19.  
  20.     <!-- call function to create table when button clicked -->
  21.     <button onclick="getValue()" >CREATE TABLE</button>
  22.    
  23.     </p>
  24.  
  25.     <!-- setting up tag where image / table goes -->
  26.     <div id='table-container'>
  27.       <img width="200px" src ="img.png">
  28.     </div>
  29.  
  30.  
  31.     <!-- prompt for user about time and answer-->
  32.     <p id ="prompt">
  33.     </p>
  34.     <div id = 'test'> </div>
  35.  
  36. </body>
  37.  
  38. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement