scriptrm/w3sjs1.html
2020-11-16 23:31:45 +09:00

11 lines
221 B
HTML
Executable File

<!DOCTYPE html>
<html>
<body>
<h2>My First JavaScript</h2>
<button type="button"
onclick="document.getElementById('demo').innerHTML = Date()">
Click me to display Date and Time.</button>
<p id="demo"></p>
</body>
</html>