<html lang="en">
<head>
<meta charset="UTF-8">
<title>Event-Driven Invocation</title>
<script>
function greet(name) {
alert("Hello, " + name + "!");
}
</script>
</head>
<body>
<button onclick="greet('Bob')">Click Me</button>
</body>
</html>