Elegant Glow Textarea - 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"> <title>Elegant Glow TextArea</title> <style> body { font-family: 'Poppins', sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; background: #ececec; margin: 0; } .textarea-container { position: relative; width: 400px; max-width: 90%; } .custom-textarea { width: 100%; padding: 15px; border: 2px solid #6a11cb; border-radius: 12px; font-size: 1rem; resize: none; outline: none; background-color: #fff; box-shadow: 0 0 15px rgba(106, 17, 203, 0.5); transition: box-shadow 0.3s ease-in-out; } .custom-textarea:focus { box-shadow: 0 0 20px rgba(106, 17, 203, 0.8); } .icon { position: absolute; top: 50%; right: 15px; transform: translateY(-50%); cursor: pointer; font-size: 1.5rem; color: #6a11cb; } </style> </head> <body> <div class="textarea-container"> <textarea class="custom-textarea" rows="5" placeholder="Type your message..."></textarea> <div class="icon">✨</div> </div> </body> </html>