Neon Status Ui - 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>Neon Status UI</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"> <style> body { font-family: 'Arial', sans-serif; background-color: #0f0f0f; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; color: #eaeaea; } .status-container { width: 500px; background: #111; border-radius: 20px; padding: 20px; box-shadow: 0 0 15px rgba(0, 255, 255, 0.5); position: relative; overflow: hidden; } .status-container::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(45deg, rgba(0,255,255,0.2), rgba(255,0,255,0.2)); opacity: 0.3; z-index: 1; pointer-events: none; } .status-header { display: flex; align-items: center; margin-bottom: 15px; position: relative; z-index: 2; } .profile-pic { width: 60px; height: 60px; border-radius: 50%; overflow: hidden; margin-right: 15px; border: 3px solid #00ffff; box-shadow: 0 0 10px rgba(0, 255, 255, 0.7); } .profile-pic img { width: 100%; height: auto; } .user-info h4 { margin: 0; font-size: 22px; color: #ffffff; } .status-input { width: 94%; border: none; border-radius: 20px; padding: 15px; font-size: 18px; background-color: rgba(255, 255, 255, 0.1); color: #ffffff; box-shadow: 0 0 10px rgba(0, 255, 255, 0.5); outline: none; resize: none; position: relative; z-index: 2; } .status-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 15px; position: relative; z-index: 2; } .status-icons i { font-size: 24px; margin-right: 15px; cursor: pointer; color: #00ffff; transition: color 0.3s ease; } .status-icons i:hover { color: #ffffff; } .post-button { background: #00ffff; color: #111; padding: 12px 24px; border: none; border-radius: 20px; cursor: pointer; font-size: 16px; box-shadow: 0 0 10px rgba(0, 255, 255, 0.7); transition: background 0.3s ease; position: relative; z-index: 2; } .post-button:hover { background: #00b0b0; } </style> </head> <body> <div class="status-container"> <div class="status-header"> <div class="profile-pic"> <img src="https://via.placeholder.com/60" alt="Profile Picture"> </div> <div class="user-info"> <h4>Emma Johnson</h4> </div> </div> <textarea class="status-input" rows="5" placeholder="Write your status..."></textarea> <div class="status-footer"> <div class="status-icons"> <i class="fas fa-camera"></i> <i class="fas fa-video"></i> <i class="fas fa-smile"></i> <i class="fas fa-map-marker-alt"></i> </div> <button class="post-button">Post</button> </div> </div> <script> document.querySelector('.post-button').addEventListener('click', () => { alert('Post has been made!'); }); </script> </body> </html>