/
Centermant
/
web-nodejs
Обзор
Документация
Войти
/
Centermant
/
web-nodejs
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
public/lab8/task2/index.html
33 строки
1 KB
Centermant
feat(lab8.1-8.2 final)
13 ноя 2025, 02:18
13 ноя 2025, 02:18
4e12d02
Код
Авторство
О чём код?
<!DOCTYPE html> <html lang="ru"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Задание 8.2: Чемпионат мира 2022</title> <link rel="stylesheet" href="/css/styles_lab.css"> </head> <body> <div class="wrapper"> <div class="header"> <h1>ЗАДАНИЕ 8.2: ЧЕМПИОНАТ МИРА 2022</h1> </div> <div class="container"> <section class="form-section"> <h2 class="title">Управление данными</h2> <button type="button" class="btn-primary" onclick="processCupData()">Обработать файл cup.txt</button> </section> <section class="table-section"> <h2>Данные</h2> <div> <button type="button" class="btn-secondary" onclick="loadGroupsData()">Загрузить группы</button> <button type="button" class="btn-secondary" onclick="loadStadiumsData()">Загрузить стадионы</button> </div> <div id="dataDisplay" class="result" style="display: none; margin-top: 20px;"></div> </section> </div> </div> <script src="script.js" defer></script> </body> </html>