You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
439 B
17 lines
439 B
<!DOCTYPE html> |
|
<html> |
|
<head> |
|
<title>Sample Book Info</title> |
|
</head> |
|
<body> |
|
<h1>Volume Sample Book</h1> |
|
<div id='content-info'></div> |
|
<script> |
|
fetch('./book') |
|
.then(response => response.json()) |
|
.then(data => { |
|
document.querySelector('#content-info').innerText = data.title |
|
}) |
|
</script> |
|
</body> |
|
</html>
|
|
|