UNO/index.html
2023-05-11 19:38:12 +03:00

30 lines
651 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome file</title>
<link rel="stylesheet" href="https://stackedit.io/style.css" />
</head>
<body class="stackedit">
<div class="stackedit__html"><h1 id="значение-ножки">Значение ножки</h1>
<p id="txtt">Парам-пам-пам</p>
<pre><code></code></pre>
</div>
<script>
setInterval(() =>
fetch('/pin')
.then((response) => {
return response.json();
})
.then((data) => {
document.getElementById("txtt").innerHTML = data;
})
,2000);
</script>
</body>
</html>