/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/html/lab-1144-001/main.html
27 строк
570 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
<!DOCTYPE html> <html lang="ru"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>DOM-пример</title> <style> *, *::before, *::after { box-sizing: border-box; } body { margin: 0; padding: 1.5rem; font-family: system-ui, sans-serif; line-height: 1.5; background: #f8fafc; color: #1e293b; } </style> </head> <body> <main id="app"> <!-- разметка примера --> </main> <script> // ваш JavaScript </script> </body> </html>