Facebook
From Simran, 2 Months ago, written in HTML5.
Embed
Download Paste or View Raw
Hits: 264
  1. <!-- Save this code in a file with a .html extension, e.g., ask_out.html -->
  2.  
  3. <!DOCTYPE html>
  4. &lt;html lang="en"&gt;
  5. &lt;head&gt;
  6.     &lt;meta charset="UTF-8"&gt;
  7.     &lt;meta name="viewport" c initial-scale=1.0"&gt;
  8.     &lt;title&gt;Ask Him Out&lt;/title&gt;
  9.     [removed]
  10.         function askOut() {
  11.             // Display a confirmation box
  12.             var confirmed = window.confirm("Would you like to go on a date with me?");
  13.  
  14.             // Check the user's response
  15.             if (confirmed) {
  16.                 alert&#40;"Great! Looking forward to it!"&#41;;
  17.             } else {
  18.                 alert&#40;"Maybe next time. Let me know when you're free!"&#41;;
  19.             }
  20.         }
  21.     [removed]
  22. &lt;/head&gt;
  23. &lt;body&gt;
  24.  
  25.     <h1>Ask Your Boyfriend Out</h1>
  26.  
  27.     <button >Ask Him Out</button>
  28.  
  29. &lt;/body&gt;
  30. &lt;/html&gt;
  31.