15 lines
244 B
HTML
15 lines
244 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Sample webpage</title>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<button id="button">Call API</button>
|
|
<div id="result"></div>
|
|
</div>
|
|
<script src="config.js"></script>
|
|
<script src="index.js"></script>
|
|
</body>
|
|
|