Code
Flux
粘贴
复制
下载
运行
index.html
UTF-8
1
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>CodeFlux Demo</title> <style> body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; background: #f0f2f5; margin: 0; color: #333; } .card { background: white; padding: 2rem; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); text-align: center; } h1 { color: #007acc; margin-bottom: 0.5rem; } p { color: #666; } </style> </head> <body> <div class="card"> <h1>CodeFlux</h1> <p>实时编码,极速预览</p> </div> </body> </html>
Preview
操作成功