/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/html/lab-1119-002/main.html
16 строк
464 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
<!DOCTYPE html> <html lang="ru"> <head> <meta charset="UTF-8"> <title>Квадрат SVG</title> <style> body { margin: 0; display: grid; place-items: center; min-height: 100dvh; background: #f1f5f9; } </style> </head> <body> <svg width="240" height="240" viewBox="0 0 240 240" role="img" aria-label="Квадрат"> <rect x="70" y="70" width="100" height="100" fill="none" stroke="#1e293b" stroke-width="3"/> </svg> </body> </html>