Med

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Button and Link Page</title>
</head>
<body>
<h1>Welcome to My Page!</h1>

<p>Check out these buttons:</p>

<!-- Button 1 -->
<button onclick="buttonClicked()">Click Me!</button>

<!-- Button 2 -->
<button onclick="location.href='https://www.example.com'" type="button">Visit Example.com</button>

<p>Explore these links:</p>

<!-- Link 1 -->
<a href="https://www.google.com" target="_blank">Google</a>

<!-- Link 2 -->
<a href="https://www.github.com" target="_blank">GitHub</a>

<script>
function buttonClicked() {
alert('Button clicked!');
}
</script>
</body>
</html>