test2/index.html
OpenClaw 2a684eed4d
All checks were successful
Deploy to dev.bl.pixeldev.eu / deploy (push) Successful in 2s
Initial commit: hello world + deploy workflow
2026-03-13 10:20:46 +00:00

21 lines
759 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>test2</title>
<style>
* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: #0d0d0d; color: #e0e0e0; font-family: 'Segoe UI', system-ui, sans-serif; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; }
h1 { font-size: 2.5rem; color: #fff; }
p { color: #555; font-size: 0.9rem; }
a { color: #7c9ef5; text-decoration: none; font-size: 0.85rem; }
</style>
</head>
<body>
<h1>Hello, World! 👋</h1>
<p>pixeldev/test2</p>
<a href="https://dev.bl.pixeldev.eu">← dev.bl.pixeldev.eu</a>
</body>
</html>