<html lang="en">
<head>
<meta charset="UTF-8">
<title>Function Invocation Example</title>
<script>
function greet() {
console.log("Hello, World!");
}
// Invoking the function
greet(); // This will output "Hello, World!" to the console
</script>
</head>
<body>
</body>
</html>