Files
pathduck.github.io/test/js/index.html
T
2022-10-07 18:18:31 +02:00

12 lines
280 B
HTML
Executable File

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