Result Size: 300 x 150
x
 
<!DOCTYPE html>
<html>
<body>
<p id="demo">Натисніть кнопку, щоб замінити цей документ новим вмістом.</p>
<button onclick="myFunction()">Спробуй це</button>
<script>
function myFunction() {
  document.open("text/html","replace");
  document.write("<h2>Вивчати HTML DOM – це цікаво!</h2>");
  document.close();
}
</script>
</body>
</html>