xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<script>
// JavaScript code can be placed here or in an external file
// For example:
function greet() {
alert("Hello, World!");
}
</script>
</head>
<body>
<h1>JavaScript in HTML</h1>
<button onclick="greet()">Click Me!</button>
</body>
</html>