Josif_tepe

Untitled

Nov 3rd, 2025
682
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.72 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.     <title>List of authors</title>
  7.     <link rel="stylesheet" href="styles.css" />
  8.   </head>
  9.   <body>
  10.     <h1>Information About Authors</h1>
  11.     <div class="filters">
  12.       <div>
  13.         <label for="name-search">Name: </label>
  14.         <input type="text" id="name-search" />
  15.       </div>
  16.       <div>
  17.         <label for="nationality-search">Nationality: </label>
  18.         <select id="nationality-search">
  19.           <option value="">All</option>
  20.         </select>
  21.       </div>
  22.       <div>
  23.         <label for="alive-search">Alive: </label>
  24.         <input type="checkbox" id="alive-search" />
  25.       </div>
  26.       <div>
  27.         <label for="year-search">Years Active: </label>
  28.         <input type="number" id="year-search" placeholder="Enter year" />
  29.       </div>
  30.       <!-- <button id="search-authors">Search</button> -->
  31.     </div>
  32.     <div class="author-header-table">
  33.     </div>
  34.     <div id="author-container">
  35.     </div>
  36.     <div clas="clearFilters">
  37.         <button id="clearFilters">Clear Filters</button>
  38.  
  39.     </div>
  40.     <div id="biblio-modal" class="modal hidden">
  41.       <div id="biblio-details-content">
  42.         <h2 id="biblio-author-name"></h2>
  43.         <button id="close-modal">Close</button>
  44.         <div id="biblio-list"></div>
  45.       </div>
  46.     </div>
  47.     <table id="authorsTable" class="table">
  48.         <thead>
  49.             <th>ID</th>
  50.             <th>Name</th>
  51.             <th>Birthdate</th>
  52.             <th>Alive</th>
  53.            
  54.            
  55.         </thead>
  56.         <tbody></tbody>
  57.     </table>
  58.     <script src="script.js"></script>
  59.   </body>
  60. </html>
Advertisement
Add Comment
Please, Sign In to add comment