/
dimankarman
/
Learning
Обзор
Документация
Войти
/
dimankarman
/
Learning
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
index.html
41 строка
1 KB
dimankarman
Create: index.html
06 июн 2026, 12:35
Верифицирован
06 июн 2026, 12:35
9b072b0
Код
Авторство
О чём код?
<!DOCTYPE html> <html lang="ru"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Hello, AI-First World</title> <style> body { font-family: Arial, sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); } .container { text-align: center; background: white; padding: 40px; border-radius: 10px; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); } h1 { color: #333; margin: 0 0 20px 0; } .name { color: #667eea; font-size: 24px; font-weight: bold; } </style> </head> <body> <div class="container"> <h1>Hello, AI-First World</h1> <div class="name">Дмитрий</div> </div> </body> </html>