Spaces:
Running
Running
| <html lang="pt-BR"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Hello World</title> | |
| <style> | |
| body{margin:0;height:100vh;display:flex;align-items:center;justify-content:center; | |
| background:linear-gradient(135deg,#0f172a,#1e3a8a);font-family:system-ui,sans-serif} | |
| h1{color:#fbbf24;font-size:4rem;animation:pop 1s ease} | |
| p{position:fixed;bottom:2rem;width:100%;text-align:center;color:#94a3b8} | |
| @keyframes pop{from{transform:scale(0);opacity:0}to{transform:scale(1);opacity:1}} | |
| </style> | |
| </head> | |
| <body> | |
| <h1>👋 Hello World!</h1> | |
| <p>Olá, mundo — publicado por Julianokimura</p> | |
| </body> | |
| </html> | |