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.
19 lines
449 B
19 lines
449 B
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
</head>
|
|
<body>
|
|
<h1>Práce s API serverem</h1>
|
|
|
|
<input type="number" id="todoId" placeholder="Zadejte ID úkolu">
|
|
<button id="fetchTodo">Načíst úkol</button>
|
|
<br>
|
|
<br>
|
|
<div id="todoResult"></div>
|
|
|
|
<script src="js/script.js"></script>
|
|
</body>
|
|
</html>
|