сделай мне страницу по олимпиаде по математике, при этом чтоб она была разбита по блокам для разные возрастов там для младших/средних/старших классов и для студентов. дизайн должен быть локоничный и приятный, на странице только эта информация, шапку и подвал для страницы делать не нужно - Initial Deployment
7789e0d verified | <html lang="ru"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Математическая олимпиада | Возрастные категории</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
| <style> | |
| .category-card { | |
| transition: all 0.3s ease; | |
| } | |
| .category-card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1); | |
| } | |
| .tab-button { | |
| transition: all 0.2s ease; | |
| } | |
| .tab-button.active { | |
| border-bottom-width: 3px; | |
| border-color: #3b82f6; | |
| color: #3b82f6; | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-gray-50 font-sans"> | |
| <div class="container mx-auto px-4 py-8 max-w-6xl"> | |
| <!-- Заголовок --> | |
| <div class="text-center mb-12"> | |
| <h1 class="text-4xl font-bold text-gray-800 mb-3">Математическая олимпиада</h1> | |
| <p class="text-xl text-gray-600 max-w-3xl mx-auto">Проверьте свои знания и решите интересные задачи в своей возрастной категории</p> | |
| </div> | |
| <!-- Навигация по категориям --> | |
| <div class="flex justify-center mb-10"> | |
| <div class="inline-flex rounded-md shadow-sm" role="group"> | |
| <button onclick="showCategory('junior')" class="tab-button active px-6 py-3 text-sm font-medium rounded-l-lg border focus:outline-none focus:ring-2 focus:ring-blue-500"> | |
| <i class="fas fa-child mr-2"></i> Младшие классы | |
| </button> | |
| <button onclick="showCategory('middle')" class="tab-button px-6 py-3 text-sm font-medium border-t border-b border-gray-200 focus:outline-none focus:ring-2 focus:ring-blue-500"> | |
| <i class="fas fa-user-graduate mr-2"></i> Средние классы | |
| </button> | |
| <button onclick="showCategory('senior')" class="tab-button px-6 py-3 text-sm font-medium border-t border-b border-gray-200 focus:outline-none focus:ring-2 focus:ring-blue-500"> | |
| <i class="fas fa-user-tie mr-2"></i> Старшие классы | |
| </button> | |
| <button onclick="showCategory('student')" class="tab-button px-6 py-3 text-sm font-medium rounded-r-lg border focus:outline-none focus:ring-2 focus:ring-blue-500"> | |
| <i class="fas fa-graduation-cap mr-2"></i> Студенты | |
| </button> | |
| </div> | |
| </div> | |
| <!-- Контент для младших классов (по умолчанию активен) --> | |
| <div id="junior" class="category-content"> | |
| <div class="grid md:grid-cols-2 gap-8"> | |
| <div class="category-card bg-white p-8 rounded-xl shadow-md border border-gray-100"> | |
| <div class="flex items-center mb-4"> | |
| <div class="bg-blue-100 p-3 rounded-full mr-4"> | |
| <i class="fas fa-calendar-alt text-blue-600 text-xl"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold text-gray-800">Даты проведения</h3> | |
| </div> | |
| <p class="text-gray-600 mb-4">Олимпиада проводится в два этапа:</p> | |
| <ul class="space-y-2 text-gray-600"> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> | |
| <span>Отборочный тур: 15-20 октября 2023</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> | |
| <span>Финальный тур: 10-12 декабря 2023</span> | |
| </li> | |
| </ul> | |
| </div> | |
| <div class="category-card bg-white p-8 rounded-xl shadow-md border border-gray-100"> | |
| <div class="flex items-center mb-4"> | |
| <div class="bg-purple-100 p-3 rounded-full mr-4"> | |
| <i class="fas fa-tasks text-purple-600 text-xl"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold text-gray-800">Темы заданий</h3> | |
| </div> | |
| <p class="text-gray-600 mb-4">Задания охватывают следующие темы:</p> | |
| <div class="flex flex-wrap gap-2"> | |
| <span class="px-3 py-1 bg-blue-50 text-blue-600 rounded-full text-sm">Арифметика</span> | |
| <span class="px-3 py-1 bg-blue-50 text-blue-600 rounded-full text-sm">Геометрия</span> | |
| <span class="px-3 py-1 bg-blue-50 text-blue-600 rounded-full text-sm">Логика</span> | |
| <span class="px-3 py-1 bg-blue-50 text-blue-600 rounded-full text-sm">Задачи на смекалку</span> | |
| </div> | |
| </div> | |
| <div class="category-card bg-white p-8 rounded-xl shadow-md border border-gray-100"> | |
| <div class="flex items-center mb-4"> | |
| <div class="bg-yellow-100 p-3 rounded-full mr-4"> | |
| <i class="fas fa-award text-yellow-600 text-xl"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold text-gray-800">Награды</h3> | |
| </div> | |
| <p class="text-gray-600 mb-4">Победители получат:</p> | |
| <ul class="space-y-2 text-gray-600"> | |
| <li class="flex items-start"> | |
| <i class="fas fa-medal text-yellow-500 mt-1 mr-2"></i> | |
| <span>Дипломы и грамоты</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-gift text-pink-500 mt-1 mr-2"></i> | |
| <span>Подарочные сертификаты в книжные магазины</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-trophy text-amber-700 mt-1 mr-2"></i> | |
| <span>Возможность участия в летней математической школе</span> | |
| </li> | |
| </ul> | |
| </div> | |
| <div class="category-card bg-white p-8 rounded-xl shadow-md border border-gray-100"> | |
| <div class="flex items-center mb-4"> | |
| <div class="bg-green-100 p-3 rounded-full mr-4"> | |
| <i class="fas fa-info-circle text-green-600 text-xl"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold text-gray-800">Дополнительная информация</h3> | |
| </div> | |
| <p class="text-gray-600 mb-4">Для учащихся 1-4 классов. Продолжительность олимпиады - 60 минут.</p> | |
| <p class="text-gray-600">Задания разработаны с учётом возрастных особенностей и направлены на развитие логического мышления и математической интуиции.</p> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Контент для средних классов (скрыт по умолчанию) --> | |
| <div id="middle" class="category-content hidden"> | |
| <div class="grid md:grid-cols-2 gap-8"> | |
| <div class="category-card bg-white p-8 rounded-xl shadow-md border border-gray-100"> | |
| <div class="flex items-center mb-4"> | |
| <div class="bg-blue-100 p-3 rounded-full mr-4"> | |
| <i class="fas fa-calendar-alt text-blue-600 text-xl"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold text-gray-800">Даты проведения</h3> | |
| </div> | |
| <p class="text-gray-600 mb-4">Олимпиада проводится в три этапа:</p> | |
| <ul class="space-y-2 text-gray-600"> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> | |
| <span>Школьный тур: 1-5 октября 2023</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> | |
| <span>Городской тур: 15-20 ноября 2023</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> | |
| <span>Финальный тур: 10-15 января 2024</span> | |
| </li> | |
| </ul> | |
| </div> | |
| <div class="category-card bg-white p-8 rounded-xl shadow-md border border-gray-100"> | |
| <div class="flex items-center mb-4"> | |
| <div class="bg-purple-100 p-3 rounded-full mr-4"> | |
| <i class="fas fa-tasks text-purple-600 text-xl"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold text-gray-800">Темы заданий</h3> | |
| </div> | |
| <p class="text-gray-600 mb-4">Задания охватывают следующие темы:</p> | |
| <div class="flex flex-wrap gap-2"> | |
| <span class="px-3 py-1 bg-blue-50 text-blue-600 rounded-full text-sm">Алгебра</span> | |
| <span class="px-3 py-1 bg-blue-50 text-blue-600 rounded-full text-sm">Геометрия</span> | |
| <span class="px-3 py-1 bg-blue-50 text-blue-600 rounded-full text-sm">Комбинаторика</span> | |
| <span class="px-3 py-1 bg-blue-50 text-blue-600 rounded-full text-sm">Теория чисел</span> | |
| <span class="px-3 py-1 bg-blue-50 text-blue-600 rounded-full text-sm">Логические задачи</span> | |
| </div> | |
| </div> | |
| <div class="category-card bg-white p-8 rounded-xl shadow-md border border-gray-100"> | |
| <div class="flex items-center mb-4"> | |
| <div class="bg-yellow-100 p-3 rounded-full mr-4"> | |
| <i class="fas fa-award text-yellow-600 text-xl"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold text-gray-800">Награды</h3> | |
| </div> | |
| <p class="text-gray-600 mb-4">Победители получат:</p> | |
| <ul class="space-y-2 text-gray-600"> | |
| <li class="flex items-start"> | |
| <i class="fas fa-medal text-yellow-500 mt-1 mr-2"></i> | |
| <span>Дипломы и грамоты</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-gift text-pink-500 mt-1 mr-2"></i> | |
| <span>Подарочные сертификаты на образовательные курсы</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-trophy text-amber-700 mt-1 mr-2"></i> | |
| <span>Путевки в математический лагерь</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-book text-blue-500 mt-1 mr-2"></i> | |
| <span>Научно-популярные книги по математике</span> | |
| </li> | |
| </ul> | |
| </div> | |
| <div class="category-card bg-white p-8 rounded-xl shadow-md border border-gray-100"> | |
| <div class="flex items-center mb-4"> | |
| <div class="bg-green-100 p-3 rounded-full mr-4"> | |
| <i class="fas fa-info-circle text-green-600 text-xl"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold text-gray-800">Дополнительная информация</h3> | |
| </div> | |
| <p class="text-gray-600 mb-4">Для учащихся 5-8 классов. Продолжительность каждого тура - 90 минут.</p> | |
| <p class="text-gray-600">Задания направлены на развитие аналитического мышления, умения работать с абстрактными понятиями и решать нестандартные задачи.</p> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Контент для старших классов (скрыт по умолчанию) --> | |
| <div id="senior" class="category-content hidden"> | |
| <div class="grid md:grid-cols-2 gap-8"> | |
| <div class="category-card bg-white p-8 rounded-xl shadow-md border border-gray-100"> | |
| <div class="flex items-center mb-4"> | |
| <div class="bg-blue-100 p-3 rounded-full mr-4"> | |
| <i class="fas fa-calendar-alt text-blue-600 text-xl"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold text-gray-800">Даты проведения</h3> | |
| </div> | |
| <p class="text-gray-600 mb-4">Олимпиада проводится в три этапа:</p> | |
| <ul class="space-y-2 text-gray-600"> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> | |
| <span>Школьный тур: 1-10 октября 2023</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> | |
| <span>Региональный тур: 20-25 ноября 2023</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> | |
| <span>Финальный тур: 15-20 февраля 2024</span> | |
| </li> | |
| </ul> | |
| </div> | |
| <div class="category-card bg-white p-8 rounded-xl shadow-md border border-gray-100"> | |
| <div class="flex items-center mb-4"> | |
| <div class="bg-purple-100 p-3 rounded-full mr-4"> | |
| <i class="fas fa-tasks text-purple-600 text-xl"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold text-gray-800">Темы заданий</h3> | |
| </div> | |
| <p class="text-gray-600 mb-4">Задания охватывают следующие темы:</p> | |
| <div class="flex flex-wrap gap-2"> | |
| <span class="px-3 py-1 bg-blue-50 text-blue-600 rounded-full text-sm">Алгебра</span> | |
| <span class="px-3 py-1 bg-blue-50 text-blue-600 rounded-full text-sm">Геометрия</span> | |
| <span class="px-3 py-1 bg-blue-50 text-blue-600 rounded-full text-sm">Тригонометрия</span> | |
| <span class="px-3 py-1 bg-blue-50 text-blue-600 rounded-full text-sm">Комбинаторика</span> | |
| <span class="px-3 py-1 bg-blue-50 text-blue-600 rounded-full text-sm">Теория чисел</span> | |
| <span class="px-3 py-1 bg-blue-50 text-blue-600 rounded-full text-sm">Математический анализ</span> | |
| </div> | |
| </div> | |
| <div class="category-card bg-white p-8 rounded-xl shadow-md border border-gray-100"> | |
| <div class="flex items-center mb-4"> | |
| <div class="bg-yellow-100 p-3 rounded-full mr-4"> | |
| <i class="fas fa-award text-yellow-600 text-xl"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold text-gray-800">Награды</h3> | |
| </div> | |
| <p class="text-gray-600 mb-4">Победители получат:</p> | |
| <ul class="space-y-2 text-gray-600"> | |
| <li class="flex items-start"> | |
| <i class="fas fa-medal text-yellow-500 mt-1 mr-2"></i> | |
| <span>Дипломы, дающие право на льготы при поступлении в вузы</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-gift text-pink-500 mt-1 mr-2"></i> | |
| <span>Денежные премии</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-trophy text-amber-700 mt-1 mr-2"></i> | |
| <span>Возможность участия в международных олимпиадах</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-laptop text-blue-500 mt-1 mr-2"></i> | |
| <span>Ноутбуки или планшеты для победителей</span> | |
| </li> | |
| </ul> | |
| </div> | |
| <div class="category-card bg-white p-8 rounded-xl shadow-md border border-gray-100"> | |
| <div class="flex items-center mb-4"> | |
| <div class="bg-green-100 p-3 rounded-full mr-4"> | |
| <i class="fas fa-info-circle text-green-600 text-xl"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold text-gray-800">Дополнительная информация</h3> | |
| </div> | |
| <p class="text-gray-600 mb-4">Для учащихся 9-11 классов. Продолжительность каждого тура - 120 минут.</p> | |
| <p class="text-gray-600">Олимпиада входит в перечень Минобрнауки РФ, что дает победителям и призерам льготы при поступлении в вузы. Задания высокого уровня сложности, соответствующие международным стандартам.</p> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Контент для студентов (скрыт по умолчанию) --> | |
| <div id="student" class="category-content hidden"> | |
| <div class="grid md:grid-cols-2 gap-8"> | |
| <div class="category-card bg-white p-8 rounded-xl shadow-md border border-gray-100"> | |
| <div class="flex items-center mb-4"> | |
| <div class="bg-blue-100 p-3 rounded-full mr-4"> | |
| <i class="fas fa-calendar-alt text-blue-600 text-xl"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold text-gray-800">Даты проведения</h3> | |
| </div> | |
| <p class="text-gray-600 mb-4">Олимпиада проводится в два этапа:</p> | |
| <ul class="space-y-2 text-gray-600"> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> | |
| <span>Отборочный онлайн-тур: 1-15 ноября 2023</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> | |
| <span>Финальный тур: 10-12 марта 2024</span> | |
| </li> | |
| </ul> | |
| </div> | |
| <div class="category-card bg-white p-8 rounded-xl shadow-md border border-gray-100"> | |
| <div class="flex items-center mb-4"> | |
| <div class="bg-purple-100 p-3 rounded-full mr-4"> | |
| <i class="fas fa-tasks text-purple-600 text-xl"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold text-gray-800">Темы заданий</h3> | |
| </div> | |
| <p class="text-gray-600 mb-4">Задания охватывают следующие темы:</p> | |
| <div class="flex flex-wrap gap-2"> | |
| <span class="px-3 py-1 bg-blue-50 text-blue-600 rounded-full text-sm">Высшая алгебра</span> | |
| <span class="px-3 py-1 bg-blue-50 text-blue-600 rounded-full text-sm">Математический анализ</span> | |
| <span class="px-3 py-1 bg-blue-50 text-blue-600 rounded-full text-sm">Дифференциальные уравнения</span> | |
| <span class="px-3 py-1 bg-blue-50 text-blue-600 rounded-full text-sm">Теория вероятностей</span> | |
| <span class="px-3 py-1 bg-blue-50 text-blue-600 rounded-full text-sm">Дискретная математика</span> | |
| <span class="px-3 py-1 bg-blue-50 text-blue-600 rounded-full text-sm">Теория функций</span> | |
| </div> | |
| </div> | |
| <div class="category-card bg-white p-8 rounded-xl shadow-md border border-gray-100"> | |
| <div class="flex items-center mb-4"> | |
| <div class="bg-yellow-100 p-3 rounded-full mr-4"> | |
| <i class="fas fa-award text-yellow-600 text-xl"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold text-gray-800">Награды</h3> | |
| </div> | |
| <p class="text-gray-600 mb-4">Победители получат:</p> | |
| <ul class="space-y-2 text-gray-600"> | |
| <li class="flex items-start"> | |
| <i class="fas fa-medal text-yellow-500 mt-1 mr-2"></i> | |
| <span>Дипломы и сертификаты</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-gift text-pink-500 mt-1 mr-2"></i> | |
| <span>Денежные премии (1 место - 50 000 руб, 2 место - 30 000 руб, 3 место - 20 000 руб)</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-trophy text-amber-700 mt-1 mr-2"></i> | |
| <span>Стажировки в ведущих IT-компаниях</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-book-open text-blue-500 mt-1 mr-2"></i> | |
| <span>Гранты на участие в международных конференциях</span> | |
| </li> | |
| </ul> | |
| </div> | |
| <div class="category-card bg-white p-8 rounded-xl shadow-md border border-gray-100"> | |
| <div class="flex items-center mb-4"> | |
| <div class="bg-green-100 p-3 rounded-full mr-4"> | |
| <i class="fas fa-info-circle text-green-600 text-xl"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold text-gray-800">Дополнительная информация</h3> | |
| </div> | |
| <p class="text-gray-600 mb-4">Для студентов 1-4 курсов бакалавриата. Продолжительность финального тура - 180 минут.</p> | |
| <p class="text-gray-600">Олимпиада проводится при поддержке ведущих математических факультетов страны. Задания высокого уровня сложности, многие из них требуют творческого подхода и глубоких знаний математических дисциплин.</p> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Кнопка регистрации --> | |
| <div class="text-center mt-12"> | |
| <button class="bg-blue-600 hover:bg-blue-700 text-white font-bold py-3 px-8 rounded-full text-lg transition duration-300 transform hover:scale-105 shadow-lg"> | |
| <i class="fas fa-pencil-alt mr-2"></i> Зарегистрироваться на олимпиаду | |
| </button> | |
| </div> | |
| </div> | |
| <script> | |
| function showCategory(categoryId) { | |
| // Скрываем все категории | |
| document.querySelectorAll('.category-content').forEach(el => { | |
| el.classList.add('hidden'); | |
| }); | |
| // Показываем выбранную категорию | |
| document.getElementById(categoryId).classList.remove('hidden'); | |
| // Обновляем активную кнопку | |
| document.querySelectorAll('.tab-button').forEach(btn => { | |
| btn.classList.remove('active'); | |
| }); | |
| // Находим кнопку, соответствующую выбранной категории | |
| const activeButton = Array.from(document.querySelectorAll('.tab-button')).find(btn => { | |
| return btn.getAttribute('onclick').includes(categoryId); | |
| }); | |
| if (activeButton) { | |
| activeButton.classList.add('active'); | |
| } | |
| } | |
| </script> | |
| <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=evgenii89/efeff" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |