All checks were successful
Deploy to dev.bl.pixeldev.eu / deploy (push) Successful in 2s
18 lines
622 B
HTML
18 lines
622 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Hello World</title>
|
|
<style>
|
|
body { margin: 0; background: #0d0d0d; color: #e0e0e0; font-family: 'Segoe UI', system-ui, sans-serif; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 100vh; gap: 0.5rem; }
|
|
h1 { font-size: 2.5rem; color: #fff; }
|
|
p { color: #555; font-size: 0.9rem; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Hello, World!</h1>
|
|
<p>pixeldev/test · bl.pixeldev.eu</p>
|
|
</body>
|
|
</html>
|