/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/html/lab-1153-004/main.html
40 строк
1 KB
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>Расписание — HTML table</title> <style> body { font-family: system-ui, sans-serif; padding: 1rem; } table { border-collapse: collapse; width: 100%; max-width: 32rem; } th, td { border: 1px solid #ccc; padding: 0.5rem 0.75rem; text-align: left; } th { background: #eef2ff; } caption { caption-side: top; font-weight: 700; margin-bottom: 0.5rem; } </style> </head> <body> <h1>Расписание на понедельник</h1> <table> <caption>8 «А» класс</caption> <thead> <tr> <th scope="col">Урок</th> <th scope="col">Время</th> <th scope="col">Предмет</th> </tr> </thead> <tbody> <tr> <th scope="row">1</th> <td>08:30–09:15</td> <td>Информатика</td> </tr> <tr> <th scope="row">2</th> <td>09:25–10:10</td> <td>Математика</td> </tr> </tbody> </table> </body> </html>