| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8" /> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| <title>Thank You!</title> |
| <style> |
| body { |
| font-family: Arial, sans-serif; |
| text-align: center; |
| background: #f8f9fa; |
| padding: 50px; |
| } |
| .container { |
| background: #fff; |
| border-radius: 12px; |
| max-width: 500px; |
| margin: 100px auto; |
| padding: 30px; |
| box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); |
| } |
| h1 { |
| color: #2c3e50; |
| } |
| p { |
| font-size: 18px; |
| color: #444; |
| margin: 20px 0; |
| } |
| .btn { |
| display: inline-block; |
| padding: 12px 24px; |
| font-size: 16px; |
| font-weight: bold; |
| color: white; |
| background-color: #007bff; |
| border: none; |
| border-radius: 8px; |
| cursor: pointer; |
| text-decoration: none; |
| transition: background-color 0.3s ease; |
| } |
| .btn:hover { |
| background-color: #0056b3; |
| } |
| .exit-note { |
| font-size: 14px; |
| color: #666; |
| margin-top: 20px; |
| } |
| </style> |
| </head> |
| <body> |
| <div class="container"> |
| <h1>Thank You!</h1> |
| <p>You have completed the experiment successfully.</p> |
| <p>Please help us by taking the post study survey using the hyper link provided below(only takes 2 more minutes) </p> |
| <a href="https://docs.google.com/forms/d/e/1FAIpQLSeZ75LYFMif6_6OlymQBPwXtbQGTILuMRDDWVuMpNx8H3ar_Q/viewform?usp=header">Click This To Take The Survey!</a> |
| <div class="exit-note"> |
| (Please do not go back and redo the experiment) |
| </div> |
| </div> |
| </body> |
| </html> |
|
|