Spaces:
Running
Running
// Mobile menu toggle const menuBtn = this.shadowRoot.querySelector('.mobile-menu-btn'); const menu = this.shadowRoot.querySelector('ul'); menuBtn.addEventListener('click', () => { menu.classList.toggle('open'); const icon = menuBtn.querySelector('i'); icon.setAttribute('data-feather', menu.classList.contains('open') ? 'x' : 'menu'); feather.replace(); }); // Navbar scroll effect const nav = this.shadowRoot.querySelector('nav'); window.addEventListener('scroll', () => { if (window.scrollY > 50) { nav.classList.add('scrolled'); } else { nav.classList.remove('scrolled'); } }); feather.replace(); } } customElements.define('custom-navbar', CustomNavbar); `; feather.replace(); } } customElements.define('custom-footer', CustomFooter); эмне ката болуп калды кыргызча жасап берчи
1a24f92 verified | <html lang="kg,ru"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Каракол Колледжи</title> | |
| <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> | |
| </head> | |
| <body class="bg-gray-100"> | |
| <custom-navbar></custom-navbar> | |
| <div class="container mx-auto px-4 py-8 mt-16"> | |
| <div class="text-center mb-12"> | |
| <h1 class="text-4xl font-bold mb-4">Каракол Колледжине кош келиңиз!</h1> | |
| <p class="text-xl text-gray-600">Билим берүүдө алдыңкы окуу жай</p> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8 mb-12"> | |
| <div class="bg-white p-6 rounded-lg shadow-md"> | |
| <h2 class="text-xl font-semibold mb-3">Окуу программалары</h2> | |
| <p class="text-gray-600">Ар кандай багыттар боюнча окуу программалары</p> | |
| </div> | |
| <div class="bg-white p-6 rounded-lg shadow-md"> | |
| <h2 class="text-xl font-semibold mb-3">Мугалимдер</h2> | |
| <p class="text-gray-600">Жогорку квалификациялуу мугалимдер</p> | |
| </div> | |
| <div class="bg-white p-6 rounded-lg shadow-md"> | |
| <h2 class="text-xl font-semibold mb-3">Дүкөн</h2> | |
| <p class="text-gray-600">Студенттер үчүн зарыл буюмдар</p> | |
| <a href="shop.html" class="mt-4 inline-block bg-blue-500 hover:bg-blue-700 text-white px-4 py-2 rounded">Дүкөнгө өтүү</a> | |
| </div> | |
| </div> | |
| </div> | |
| </body> | |
| </html> | |