Vladi
Профи
(580)
6 месяцев назад
<!doctype html>
<html lang="en">
<head>
<title>Document</title>
</head>
<body>
<p> 1 </p>
<button> </button>
<script>
let n = document.querySelector("p");
document.querySelector("button").addEventListener("click", function () {
n.textContent++;
});
</script>
</body>
</html>
Конечно JS код желательно записывать в отдельный файл.