Bubble Feedback - MeggiTools
Run
Toggle Theme
Share Link
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" /> <title>Bubble Feedback</title> <style> @import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap'); body { background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%); font-family: 'Ubuntu', sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .feedback-form-container { background: #fff; border-radius: 15px; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); width: 380px; max-width: 100%; padding: 20px; animation: bubblePop 1s ease-in-out; } .feedback-form-container h2 { text-align: center; color: #333; margin-bottom: 20px; } .feedback-form-container form { display: flex; flex-direction: column; } .feedback-form-container form .form-group { margin-bottom: 15px; position: relative; } .feedback-form-container form .form-group input, .feedback-form-container form .form-group textarea { width: 92%; padding: 12px; border: 1px solid #ccc; border-radius: 10px; outline: none; transition: border-color 0.3s; } .feedback-form-container form .form-group input:focus, .feedback-form-container form .form-group textarea:focus { border-color: #a1c4fd; } .feedback-form-container form .form-group i { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); color: #aaa; } .feedback-form-container form button { background: #a1c4fd; color: #fff; padding: 10px 15px; border: none; border-radius: 10px; cursor: pointer; transition: background 0.3s; } .feedback-form-container form button:hover { background: #879ecb; } @keyframes bubblePop { 0% { transform: scale(0.5); opacity: 0.3; } 100% { transform: scale(1); opacity: 1; } } </style> </head> <body> <div class="feedback-form-container"> <h2>Bubble Feedback</h2> <form id="bubbleFeedbackForm"> <div class="form-group"> <input type="text" id="name" placeholder="Your Name" required> <i class="fa fa-user"></i> </div> <div class="form-group"> <input type="email" id="email" placeholder="Your Email" required> <i class="fa fa-envelope"></i> </div> <div class="form-group"> <textarea id="message" rows="4" placeholder="Your Feedback" required></textarea> <i class="fa fa-comment"></i> </div> <button type="submit">Submit Feedback</button> </form> </div> <script src="https://kit.fontawesome.com/a076d05399.js"></script> <script> document.getElementById('bubbleFeedbackForm').addEventListener('submit', function(event) { event.preventDefault(); alert('Thank you for your bubble feedback!'); }); </script> </body> </html>