18 lines
527 B
HTML
18 lines
527 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" href="styles.css">
|
|
<script src="bookList.js"></script>
|
|
<script src="bookList.test.js"></script>
|
|
<script src="helper.js"></script>
|
|
<script src="script.js" defer></script>
|
|
</head>
|
|
<body>
|
|
<h1>Book Finder</h1>
|
|
<input id="search-bar" type="text" placeholder="Search for books by tags">
|
|
<button class="btn" id="search-btn">Search</button>
|
|
<div id="bookList">
|
|
<!-- List of books will be rendered here -->
|
|
</div>
|
|
</body>
|
|
</html> |