/
AchDoA
/
lab
Обзор
Документация
Войти
/
AchDoA
/
lab
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
index.html
44 строки
1 KB
AoDhcA
Initial commit with AI-generated hello world page
26 фев 2026, 18:46
26 фев 2026, 18:46
0455833
Код
Авторство
О чём код?
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>Hello, AI-First World</title> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <style> body { font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; margin: 0; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; background: #f5f7fb; color: #111827; } h1 { margin: 0 0 0.5rem; font-size: 2.5rem; } p { margin: 0; font-size: 1.25rem; color: #4b5563; } .card { padding: 2rem 3rem; border-radius: 1rem; background: #ffffff; box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12); text-align: center; } </style> </head> <body> <main class="card"> <h1>Hello, AI-First World</h1> <p>Created by Sergey</p> </main> </body> </html>