<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Dynamic Alert Example</title>
</head>
<body>
    <script>
        var name = prompt("Enter your name:");
        window.alert("Hello, " + name + "! Welcome to our website.");
    </script>
</body>
</html>