<!-- Save this code in a file with a .html extension, e.g., ask_out.html --> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" c initial-scale=1.0"> <title>Ask Him Out</title> [removed] function askOut() { // Display a confirmation box var confirmed = window.confirm("Would you like to go on a date with me?"); // Check the user's response if (confirmed) { alert("Great! Looking forward to it!"); } else { alert("Maybe next time. Let me know when you're free!"); } } [removed] </head> <body>

Ask Your Boyfriend Out

</body> </html>