Posts
Código HTML
- Get link
- X
- Other Apps
<!DOCTYPE html> <html lang="pt-BR"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title>Chat com Wikipedia</title> <style> body { font-family: Arial, sans-serif; margin: 0; height: 100vh; display: flex; flex-direction: column; } #chat { flex: 1; padding: 20px; background: #f4f4f4; overflow-y: auto; display: flex; flex-direction: column; } .message { max-width: 70%; margin: 6px 0; padding: 10px 14px; border-radius: 12px; line-height: 1.4; ...