<html>
<head>
<script>
function displayDate() {
document.getElementById("demo").innerHTML = Date();
}
</script>
</head>
<body>
<h2>My First JavaScript</h2>
<p id="demo">This is a paragraph.</p>
<button type="button" onclick="displayDate()">Display Date</button>
</body>
<!-- Mirrored from www.w3schools.com/js/tryit.asp?filename=tryjs_events by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 02:40:43 GMT -->
</html>