<html lang="en">
<head>
<meta charset="UTF-8">
<title>Arrow Function Example</title>
<script>
const greet = (name) => {
alert("Hello, " + name + "!");
};
</script>
</head>
<body>
<button onclick="greet('Charlie')">Greet</button>
</body>
</html>