/
Coderdev
/
web-static-labs
Обзор
Документация
Войти
/
Coderdev
/
web-static-labs
Код
Запросы
0
Задачи
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
html/index.html
179 строк
5 KB
Coderdev
1
12 май 2026, 12:37
12 май 2026, 12:37
d8ecd0f
Код
Авторство
О чём код?
<!DOCTYPE html> <html lang="ru"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Работы: Камышников Л.Ю.</title> <style> body { margin: 0; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: #f4f7f6; color: #333; } .app-layout { display: grid; grid-template-areas: "header header" "sidebar main" "footer footer"; grid-template-columns: 260px 1fr; grid-template-rows: auto 1fr auto; min-height: 100vh; } .header { grid-area: header; background-color: #2c3e50; color: white; padding: 20px 30px; } .sidebar { grid-area: sidebar; background-color: #fff; border-right: 1px solid #ddd; padding: 25px; } .sidebar h3 { font-size: 0.9rem; text-transform: uppercase; margin-top: 25px; } .nav-links { list-style: none; padding: 0; } .nav-links li { margin-bottom: 10px; } .nav-links a { text-decoration: none; color: grey; font-weight: 500; } .main-content { grid-area: main; padding: 30px; display: grid; gap: 20px; align-content: start; } .card { background: #fff; padding: 20px; border-radius: 10px; background-color: #d5dee3; } .card h2 { margin-top: 0; font-size: 1.1rem; color: #2c3e50; } .progress-bar { display: flex; justify-content: space-between; align-items: center; margin-top: 15px; } .score { font-size: 2rem; font-weight: bold; color: #27ae60; } .footer { grid-area: footer; background-color: #2c3e50; color: #bdc3c7; text-align: center; padding: 15px; font-size: 0.9rem; } @media (max-width: 850px) { .app-layout { grid-template-areas: "header" "main" "sidebar" "footer"; grid-template-columns: 1fr; } .sidebar { border-right: none; border-top: 1px solid #ddd; } } </style> </head> <body> <div class="app-layout"> <header class="header"> <h1>Личный кабинет студента</h1> </header> <aside class="sidebar"> <nav> <h3>Общие разделы</h3> <ul class="nav-links"> <li><a href="lab1/index.html">Открыть ЛР №1</a></li> <li><a href="lab2/index.html">Открыть ЛР №2</a></li> <li><a href="lab3/index.html">Открыть ЛР №3</a></li> <li><a href="lab4/index.html">Открыть ЛР №4</a></li> <li><a href="lab5/index.html">Открыть ЛР №5</a></li> <li><a href="lab6/index.html">Открыть ЛР №6</a></li> <li><a href="lab7/index.html">Открыть ЛР №7</a></li> <li><a href="lab8/index.html">Открыть ЛР №8</a></li> <li><a href="lab9/index.html">Открыть ЛР №9</a></li> <li><a href="lab10/index.html">Открыть ЛР №10</a></li> <li><a href="lab11/index.html">Открыть ЛР №11</a></li> </ul> </nav> </aside> <main class="main-content"> <section class="card"> <h2>Личная информация</h2> <p><strong>ФИО:</strong> Камышников Л.Ю.</p> <p><strong>Группа:</strong> ПИ2403</p> <p><a href="lab1/task10/index.html">Задание 10 (Скорборд)</a></p> </section> <section class="card"> <h2>Прогресс выполнения заданий</h2> <div class="progress-bar"> <span class="score">11 / 12</span> </div> <p style="color: #7f8c8d; font-size: 0.8rem; margin-top: 10px;"> Обновлено: 23.04.2026 </p> </section> <section class="card"> <h2>HackerRank Баллы</h2> <p>Python: <strong>435 pts</strong></p> <p>SQL: <strong>1130 pts</strong></p> </section> </main> <footer class="footer"> © 2026 Камышников Л.Ю. | ПИ2403 </footer> </div> </body> </html>