Guest User

Untitled

a guest
Jul 22nd, 2020
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.66 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7.     <title>Books</title>
  8.     <link rel="stylesheet" href="./mystyles.css">
  9. </head>
  10. <body>
  11.     <button id="loadBooks">LOAD ALL BOOKS</button>
  12.     <table>
  13.         <thead>
  14.             <tr>
  15.                 <th>Title</th>
  16.                 <th>Author</th>
  17.                 <th>Isbn</th>
  18.                 <th>Action</th>
  19.             </tr>
  20.         </thead>
  21.         <tbody>
  22.             <tr>
  23.                 <td>Harry Poter</td>
  24.                 <td>J. K. Rowling</td>
  25.                 <td>0-7475-3269-9</td>
  26.                 <td>
  27.                     <button>Edit</button>
  28.                     <button>Delete</button>
  29.                 </td>
  30.             </tr>
  31.             <tr>
  32.                 <td>Game of Thrones</td>
  33.                 <td>George R. R. Martin</td>
  34.                 <td>9780553386790</td>
  35.                 <td>
  36.                     <button>Edit</button>
  37.                     <button>Delete</button>
  38.                 </td>
  39.             </tr>
  40.         </tbody>
  41.     </table>
  42.  
  43.     <form>
  44.         <h3>FORM</h3>
  45.         <label>TITLE</label>
  46.         <input type="title" id="title" placeholder="Title...">
  47.         <label>AUTHOR</label>
  48.         <input type="title" id="author" placeholder="Author...">
  49.         <label>ISBN</label>
  50.         <input type="title" id="isbn" placeholder="Isnb...">
  51.         <button>Submit</button>
  52.     </form>
  53.     <script type="module" src="./myapp.js"></script>
  54. </body>
  55. </html>
  56.  
  57. <!--Feel free to change/update/modify the HTML Structure-->
Add Comment
Please, Sign In to add comment