Files
pathduck.github.io/test/test-js.html
T
2022-06-13 11:46:09 +02:00

10 lines
243 B
HTML
Executable File

<!DOCTYPE html>
<html>
<body>
<script>document.write("Hello World!");</script>
<br>
<button type="button" onclick='document.getElementById("demo").innerHTML = "Hello JavaScript!"'>Click Me!</button>
<p id="demo"></p>
</body>
</html>