Advertisement
Fhernd

index.html

Oct 24th, 2018
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.65 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4.   <head>
  5.     <link rel="stylesheet" href="style.css">
  6.     <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
  7.    
  8.   </head>
  9.  
  10.   <body>
  11.     <h1 id="encabezado">Hello Plunker!</h1>
  12.    
  13.     <script src="script.js"></script>
  14.    
  15.     <div id="contenedor">
  16.      
  17.     </div>
  18.    
  19.     <input type="number" id="id">
  20.     <button onclick="consultar();">Consultar</button>
  21.    
  22.     <br>
  23.    
  24.     <table border="1">
  25.       <thead>
  26.         <tr>
  27.           <td>DT</td>
  28.         </tr>
  29.       </thead>
  30.       <tbody id="cuerpoTabla">
  31.        
  32.       </tbody>
  33.     </table>
  34.   </body>
  35.  
  36. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement