Advertisement
didkoslawow

Book Library

Jun 26th, 2023
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.55 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="./styles.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>Action</th>
  18.              </tr>
  19.          </thead>
  20.          <tbody>
  21.              <tr>
  22.                  <td>Harry Poter</td>
  23.                  <td>J. K. Rowling</td>
  24.                  <td>
  25.                      <button>Edit</button>
  26.                      <button>Delete</button>
  27.                  </td>
  28.              </tr>
  29.              <tr>
  30.                  <td>Game of Thrones</td>
  31.                  <td>George R. R. Martin</td>
  32.                  <td>
  33.                      <button>Edit</button>
  34.                      <button>Delete</button>
  35.                  </td>
  36.              </tr>
  37.          </tbody>
  38.      </table>
  39.  
  40.      <form>
  41.          <h3>FORM</h3>
  42.          <label>TITLE</label>
  43.          <input type="text" name="title" placeholder="Title...">
  44.          <label>AUTHOR</label>
  45.          <input type="text" name="author" placeholder="Author...">
  46.          <button>Submit</button>
  47.      </form>
  48.      <script src="./app.js"></script>
  49.  </body>
  50.  </html>
  51.  
  52.  <!--Feel free to change/update/modify the HTML Structure-->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement