bookManagement/public/google_api_tester.html

23 lines
636 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Google Books API Tester</title>
<link rel="stylesheet" href="style.css"> </head>
<body>
<h1>Google Books API Tester</h1>
<div>
<label for="search-query">Search Query:</label>
<input type="text" id="search-query" placeholder="Enter book title, author, ISBN, etc.">
<button id="search-button">Search</button>
</div>
<h2>API Response:</h2>
<pre id="api-response"></pre>
<script src="google_api_tester.js"></script>
</body>
</html>