ABOUT ME

🧠 Kids Learning: Building Bright Minds from an Early Age

In today’s fast-paced world, early childhood education plays a vital role in shaping a child’s future. A strong foundation in learning helps children grow mentally, emotionally, and socially. Whether it's reading the alphabet, solving simple math problems, or learning good habits, kids learning programs make a big difference in a child’s development.



🎯 Why Kids Learning is Important

  1. Brain Development
    Children’s brains grow rapidly in the first few years. Educational activities like puzzles, games, and storytelling help strengthen memory, focus, and problem-solving skills.

  2. Language Skills
    Kids who are exposed to reading and speaking early on develop stronger communication skills. Learning new words and languages at a young age becomes easier and fun through songs, videos, and games.

  3. Confidence Building
    When kids successfully complete tasks or learn something new, it boosts their self-confidence. Positive reinforcement through learning activities encourages them to try new things.

  4. Better Social Skills
    Group activities, both online and offline, teach children how to cooperate, share, and respect others—skills that are essential throughout life.


📚 Popular Types of Kids Learning Programs

There are many kinds of learning programs available for kids today. Here are the most popular ones:

🧩 Interactive Learning Apps

Mobile apps like ABCmouse, Khan Academy Kids, and Duolingo Kids offer fun and engaging lessons for children of all ages.

📺 YouTube Educational Channels

Channels like Cocomelon, Numberblocks, and Sesame Street are filled with videos that teach alphabets, numbers, colors, and good manners through fun animations and music.

🎨 Creative Learning (Arts & Crafts)

Art and drawing programs encourage kids to express themselves and think creatively. This kind of learning is great for hand-eye coordination and fine motor skills.

📖 Reading & Phonics Programs

Apps and books that focus on reading, letter sounds, and phonics help kids become early readers.

🌍 Online Courses

Many websites offer online learning programs for subjects like science, math, and English in a structured and age-appropriate way.


💡 Tips for Parents to Support Kids’ Learning

  1. Create a Daily Routine
    Set a fixed time for learning, play, and rest. A routine helps children stay focused and organized.

  2. Make Learning Fun
    Use colors, songs, stories, and games to make learning exciting.

  3. Praise Progress
    Encourage and celebrate your child’s efforts, not just results.

  4. Limit Screen Time
    Balance digital learning with physical play and real-world interactions.

  5. Stay Involved
    Talk to your kids about what they learned each day and explore the topics with them.


✅ Benefits of Kids Learning Programs

  • Boosts early brain development

  • Builds a habit of learning

  • Prepares kids for school success

  • Enhances emotional intelligence

  • Encourages curiosity and creativity


🔍 Final Thoughts

Kids learning is not just about academics—it's about helping children grow into curious, confident, and capable individuals. By using the right tools and creating a supportive environment at home, parents can make a lifelong impact on their children’s education. Start early, stay consistent, and always make learning joyful!

HTML Script

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>KidsFunWorld - Top Games & Videos for Children</title>

    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">

    <style>

        /* Global Styles */

        :root {

            --primary: #FF6B6B;

            --secondary: #4ECDC4;

            --accent: #FFE66D;

            --light: #F7FFF7;

            --dark: #292F36;

            --white: #ffffff;

            --gray: #6c757d;

        }

        

        * {

            margin: 0;

            padding: 0;

            box-sizing: border-box;

            font-family: 'Comic Neue', cursive, sans-serif;

        }

        

        body {

            background-color: var(--light);

            color: var(--dark);

            overflow-x: hidden;

        }

        

        .container {

            width: 100%;

            max-width: 1200px;

            margin: 0 auto;

            padding: 0 20px;

        }

        

        .btn {

            display: inline-block;

            padding: 12px 24px;

            border-radius: 50px;

            font-weight: bold;

            text-decoration: none;

            transition: all 0.3s ease;

            cursor: pointer;

            border: none;

            font-size: 16px;

        }

        

        .btn-primary {

            background-color: var(--primary);

            color: var(--white);

        }

        

        .btn-primary:hover {

            background-color: #e05555;

            transform: translateY(-3px);

            box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);

        }

        

        .btn-secondary {

            background-color: var(--secondary);

            color: var(--white);

        }

        

        .btn-secondary:hover {

            background-color: #3ebbb3;

            transform: translateY(-3px);

            box-shadow: 0 10px 20px rgba(78, 205, 196, 0.3);

        }

        

        section {

            padding: 80px 0;

        }

        

        h1, h2, h3 {

            font-weight: 700;

            line-height: 1.2;

        }

        

        h1 {

            font-size: 3.5rem;

            margin-bottom: 20px;

        }

        

        h2 {

            font-size: 2.5rem;

            margin-bottom: 30px;

            text-align: center;

            position: relative;

        }

        

        h2:after {

            content: '';

            display: block;

            width: 80px;

            height: 5px;

            background: linear-gradient(to right, var(--primary), var(--secondary));

            margin: 15px auto;

            border-radius: 5px;

        }

        

        h3 {

            font-size: 1.8rem;

            margin-bottom: 15px;

        }

        

        p {

            font-size: 1.1rem;

            line-height: 1.6;

            margin-bottom: 20px;

            color: var(--gray);

        }

        

        /* Header Styles */

        header {

            background-color: var(--white);

            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

            position: fixed;

            width: 100%;

            top: 0;

            z-index: 1000;

        }

        

        .header-container {

            display: flex;

            justify-content: space-between;

            align-items: center;

            padding: 20px 0;

        }

        

        .logo {

            display: flex;

            align-items: center;

        }

        

        .logo img {

            height: 50px;

            margin-right: 10px;

        }

        

        .logo h1 {

            font-size: 1.8rem;

            color: var(--primary);

            margin: 0;

        }

        

        .logo span {

            color: var(--secondary);

        }

        

        nav ul {

            display: flex;

            list-style: none;

        }

        

        nav ul li {

            margin-left: 30px;

        }

        

        nav ul li a {

            text-decoration: none;

            color: var(--dark);

            font-weight: 600;

            transition: color 0.3s;

            position: relative;

        }

        

        nav ul li a:hover {

            color: var(--primary);

        }

        

        nav ul li a:after {

            content: '';

            position: absolute;

            width: 0;

            height: 2px;

            background: var(--primary);

            bottom: -5px;

            left: 0;

            transition: width 0.3s;

        }

        

        nav ul li a:hover:after {

            width: 100%;

        }

        

        .mobile-menu-btn {

            display: none;

            background: none;

            border: none;

            font-size: 24px;

            color: var(--dark);

            cursor: pointer;

        }

        

        /* Hero Section */

        .hero {

            background: url('https://images.unsplash.com/photo-1502086223501-7ea6ecd79368?q=80&w=1138&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;

            height: 100vh;

            display: flex;

            align-items: center;

            position: relative;

            margin-top: 90px;

        }

        

        .hero:before {

            content: '';

            position: absolute;

            top: 0;

            left: 0;

            width: 100%;

            height: 100%;

            background: rgba(0, 0, 0, 0.3);

        }

        

        .hero-content {

            position: relative;

            z-index: 1;

            color: var(--white);

            max-width: 600px;

        }

        

        .hero h1 {

            font-size: 4rem;

            animation: fadeInUp 1s ease;

            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);

        }

        

        .hero p {

            font-size: 1.3rem;

            color: var(--white);

            margin-bottom: 30px;

            animation: fadeInUp 1s ease 0.3s forwards;

            opacity: 0;

            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);

        }

        

        .hero-btns {

            display: flex;

            gap: 20px;

            animation: fadeInUp 1s ease 0.6s forwards;

            opacity: 0;

        }

        

        /* Popular Games Section */

        .games {

            background-color: var(--white);

        }

        

        .games-grid {

            display: grid;

            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

            gap: 30px;

            margin-top: 50px;

        }

        

        .game-card {

            background: var(--white);

            border-radius: 15px;

            overflow: hidden;

            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

            transition: transform 0.3s, box-shadow 0.3s;

            position: relative;

            z-index: 1;

        }

        

        .game-card:hover {

            transform: translateY(-10px);

            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);

        }

        

        .game-img {

            height: 200px;

            overflow: hidden;

            position: relative;

        }

        

        .game-img img {

            width: 100%;

            height: 100%;

            object-fit: cover;

            transition: transform 0.5s;

        }

        

        .game-card:hover .game-img img {

            transform: scale(1.1);

        }

        

        .game-play {

            position: absolute;

            top: 50%;

            left: 50%;

            transform: translate(-50%, -50%);

            width: 60px;

            height: 60px;

            background-color: rgba(255, 255, 255, 0.8);

            border-radius: 50%;

            display: flex;

            align-items: center;

            justify-content: center;

            opacity: 0;

            transition: opacity 0.3s;

        }

        

        .game-card:hover .game-play {

            opacity: 1;

        }

        

        .game-play i {

            color: var(--primary);

            font-size: 24px;

            margin-left: 5px;

        }

        

        .game-content {

            padding: 25px;

        }

        

        .game-content h3 {

            color: var(--primary);

        }

        

        .game-rating {

            color: var(--accent);

            margin-bottom: 10px;

        }

        

        .game-content .btn {

            margin-top: 15px;

        }

        

        /* Videos Section */

        .videos {

            background-color: #f0f7ff;

            position: relative;

            overflow: hidden;

        }

        

        .videos:before {

            content: '';

            position: absolute;

            top: 0;

            left: 0;

            width: 100%;

            height: 100%;

            background: url('https://www.transparenttextures.com/patterns/cartographer.png');

            opacity: 0.05;

            z-index: 0;

        }

        

        .videos-container {

            position: relative;

            z-index: 1;

        }

        

        .videos-grid {

            display: grid;

            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

            gap: 30px;

            margin-top: 50px;

        }

        

        .video-card {

            background: var(--white);

            border-radius: 15px;

            overflow: hidden;

            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

            transition: transform 0.3s;

        }

        

        .video-card:hover {

            transform: translateY(-10px);

        }

        

        .video-thumbnail {

            height: 160px;

            position: relative;

            overflow: hidden;

        }

        

        .video-thumbnail img {

            width: 100%;

            height: 100%;

            object-fit: cover;

        }

        

        .video-play {

            position: absolute;

            top: 50%;

            left: 50%;

            transform: translate(-50%, -50%);

            width: 60px;

            height: 60px;

            background-color: rgba(255, 107, 107, 0.8);

            border-radius: 50%;

            display: flex;

            align-items: center;

            justify-content: center;

        }

        

        .video-play i {

            color: var(--white);

            font-size: 24px;

            margin-left: 5px;

        }

        

        .video-info {

            padding: 15px;

        }

        

        .video-info h3 {

            font-size: 1.2rem;

            margin-bottom: 5px;

            color: var(--dark);

        }

        

        .video-stats {

            display: flex;

            justify-content: space-between;

            color: var(--gray);

            font-size: 0.9rem;

        }

        

        /* Categories Section */

        .categories {

            background-color: var(--white);

        }

        

        .categories-grid {

            display: grid;

            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

            gap: 20px;

            margin-top: 50px;

        }

        

        .category-card {

            background: var(--light);

            padding: 30px 20px;

            border-radius: 15px;

            text-align: center;

            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

            transition: transform 0.3s;

            cursor: pointer;

        }

        

        .category-card:hover {

            transform: translateY(-10px);

            background: linear-gradient(135deg, var(--primary), var(--secondary));

            color: var(--white);

        }

        

        .category-card:hover .category-icon {

            color: var(--white);

        }

        

        .category-card:hover p {

            color: var(--white);

        }

        

        .category-icon {

            font-size: 2.5rem;

            color: var(--primary);

            margin-bottom: 15px;

            transition: color 0.3s;

        }

        

        .category-card h3 {

            font-size: 1.3rem;

            margin-bottom: 10px;

        }

        

        /* Testimonials Section */

        .testimonials {

            background-color: var(--light);

        }

        

        .testimonial-slider {

            max-width: 800px;

            margin: 50px auto 0;

            position: relative;

        }

        

        .testimonial {

            background: var(--white);

            padding: 30px;

            border-radius: 15px;

            text-align: center;

            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

            display: none;

        }

        

        .testimonial.active {

            display: block;

            animation: fadeIn 0.5s ease;

        }

        

        .testimonial-img {

            width: 80px;

            height: 80px;

            border-radius: 50%;

            object-fit: cover;

            margin: 0 auto 20px;

            border: 3px solid var(--primary);

        }

        

        .testimonial-text {

            font-style: italic;

            margin-bottom: 20px;

        }

        

        .testimonial-author {

            font-weight: bold;

            color: var(--primary);

        }

        

        .testimonial-age {

            color: var(--gray);

            font-size: 0.9rem;

        }

        

        .testimonial-nav {

            display: flex;

            justify-content: center;

            margin-top: 30px;

        }

        

        .testimonial-dot {

            width: 12px;

            height: 12px;

            border-radius: 50%;

            background: var(--gray);

            margin: 0 5px;

            cursor: pointer;

            transition: background 0.3s;

        }

        

        .testimonial-dot.active {

            background: var(--primary);

        }

        

        /* CTA Section */

        .cta {

            background: linear-gradient(135deg, var(--primary), var(--secondary));

            color: var(--white);

            text-align: center;

            padding: 100px 0;

        }

        

        .cta h2 {

            color: var(--white);

        }

        

        .cta h2:after {

            background: var(--white);

        }

        

        .cta p {

            color: var(--white);

            max-width: 700px;

            margin: 0 auto 40px;

        }

        

        .cta .btn {

            background: var(--white);

            color: var(--primary);

            font-size: 1.2rem;

            padding: 15px 40px;

        }

        

        .cta .btn:hover {

            background: rgba(255, 255, 255, 0.9);

            transform: translateY(-3px);

            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);

        }

        

        /* Footer */

        footer {

            background-color: var(--dark);

            color: var(--white);

            padding: 60px 0 20px;

        }

        

        .footer-container {

            display: grid;

            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

            gap: 40px;

            margin-bottom: 40px;

        }

        

        .footer-logo {

            display: flex;

            align-items: center;

            margin-bottom: 20px;

        }

        

        .footer-logo img {

            height: 40px;

            margin-right: 10px;

        }

        

        .footer-logo h2 {

            font-size: 1.5rem;

            color: var(--white);

            margin: 0;

            text-align: left;

        }

        

        .footer-logo h2:after {

            display: none;

        }

        

        .footer-about p {

            color: #adb5bd;

        }

        

        .footer-links h3, .footer-contact h3 {

            font-size: 1.3rem;

            margin-bottom: 25px;

            color: var(--white);

        }

        

        .footer-links ul {

            list-style: none;

        }

        

        .footer-links ul li {

            margin-bottom: 10px;

        }

        

        .footer-links ul li a {

            color: #adb5bd;

            text-decoration: none;

            transition: color 0.3s;

        }

        

        .footer-links ul li a:hover {

            color: var(--primary);

        }

        

        .footer-contact p {

            color: #adb5bd;

            margin-bottom: 15px;

            display: flex;

            align-items: center;

        }

        

        .footer-contact i {

            margin-right: 10px;

            color: var(--primary);

        }

        

        .social-links {

            display: flex;

            gap: 15px;

            margin-top: 20px;

        }

        

        .social-links a {

            display: flex;

            align-items: center;

            justify-content: center;

            width: 40px;

            height: 40px;

            border-radius: 50%;

            background: rgba(255, 255, 255, 0.1);

            color: var(--white);

            transition: all 0.3s;

        }

        

        .social-links a:hover {

            background: var(--primary);

            transform: translateY(-3px);

        }

        

        .footer-bottom {

            text-align: center;

            padding-top: 20px;

            border-top: 1px solid rgba(255, 255, 255, 0.1);

            color: #adb5bd;

            font-size: 0.9rem;

        }

        

        /* Animations */

        @keyframes fadeInUp {

            from {

                opacity: 0;

                transform: translateY(20px);

            }

            to {

                opacity: 1;

                transform: translateY(0);

            }

        }

        

        @keyframes fadeIn {

            from {

                opacity: 0;

            }

            to {

                opacity: 1;

            }

        }

        

        @keyframes bounce {

            0%, 20%, 50%, 80%, 100% {

                transform: translateY(0);

            }

            40% {

                transform: translateY(-20px);

            }

            60% {

                transform: translateY(-10px);

            }

        }

        

        .animate {

            opacity: 0;

            transform: translateY(30px);

            transition: all 0.8s ease;

        }

        

        .animate.show {

            opacity: 1;

            transform: translateY(0);

        }

        

        .bounce {

            animation: bounce 2s infinite;

        }

        

        /* Responsive Styles */

        @media (max-width: 992px) {

            h1 {

                font-size: 3rem;

            }

            

            h2 {

                font-size: 2.2rem;

            }

            

            section {

                padding: 60px 0;

            }

        }

        

        @media (max-width: 768px) {

            .header-container {

                padding: 15px 0;

            }

            

            nav {

                position: fixed;

                top: 80px;

                left: -100%;

                width: 80%;

                height: calc(100vh - 80px);

                background: var(--white);

                box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);

                transition: left 0.3s;

                z-index: 999;

            }

            

            nav.active {

                left: 0;

            }

            

            nav ul {

                flex-direction: column;

                padding: 30px;

            }

            

            nav ul li {

                margin: 15px 0;

            }

            

            .mobile-menu-btn {

                display: block;

            }

            

            .hero h1 {

                font-size: 2.5rem;

            }

            

            .hero p {

                font-size: 1.1rem;

            }

            

            .hero-btns {

                flex-direction: column;

                gap: 15px;

            }

            

            .btn {

                width: 100%;

                text-align: center;

            }

        }

        

        @media (max-width: 576px) {

            h1 {

                font-size: 2.2rem;

            }

            

            h2 {

                font-size: 1.8rem;

            }

            

            section {

                padding: 40px 0;

            }

            

            .games-grid, .videos-grid, .categories-grid {

                grid-template-columns: 1fr;

            }

        }

    </style>

</head>

<body>

    <!-- Header -->

    <header>

        <div class="container header-container">

            <div class="logo">

                <img src="https://img.icons8.com/color/48/000000/children.png" alt="KidsFunWorld Logo">

                <h1>Kids<span>Fun</span>World</h1>

            </div>

            <nav id="nav">

                <ul>

                    <li><a href="#home">Home</a></li>

                    <li><a href="#games">Popular Games</a></li>

                    <li><a href="#videos">Top Videos</a></li>

                    <li><a href="#categories">Categories</a></li>

                    <li><a href="#testimonials">Reviews</a></li>

                </ul>

            </nav>

            <button class="mobile-menu-btn" id="mobileMenuBtn">

                <i class="fas fa-bars"></i>

            </button>

        </div>

    </header>


    <!-- Hero Section -->

    <section class="hero" id="home">

        <div class="container">

            <div class="hero-content">

                <h1>Where Fun Meets Learning!</h1>

                <p>Discover the most popular games and videos that kids love worldwide. Safe, educational, and super fun!</p>

                <div class="hero-btns">

                    <a href="#games" class="btn btn-primary bounce"><i class="fas fa-gamepad"></i> 

</a>

                    <a href="#videos" class="btn btn-secondary"><i class="fas fa-play"></i> Watch Videos</a>

                </div>

            </div>

        </div>

    </section>


    <!-- Popular Games Section -->

    <section class="games" id="games">

        <div class="container">

            <h2>Most Popular Games</h2>

            <p class="subtitle" style="text-align: center; max-width: 800px; margin: 0 auto 40px;">These are the games kids search for the most - educational and super fun!</p>

            

            <div class="games-grid">

                <!-- Game 1 -->

                <div class="game-card animate">

                    <div class="game-img">

                        <img src="https://plus.unsplash.com/premium_photo-1723579268175-d27d90cd4772?q=80&w=688&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" alt="Math Adventure Game">

                        <div class="game-play">

                            <i class="fas fa-play"></i>

                        </div>

                    </div>

                    <div class="game-content">

                        <h3>Math Adventure</h3>

                        <div class="game-rating">

                            <i class="fas fa-star"></i>

                            <i class="fas fa-star"></i>

                            <i class="fas fa-star"></i>

                            <i class="fas fa-star"></i>

                            <i class="fas fa-star-half-alt"></i>

                            <span> (12,345)</span>

                        </div>

                        <p>Join the numbers quest and solve puzzles to rescue the math kingdom! Perfect for ages 5-9.</p>

                        <a href="techpk" class="btn btn-primary">Play Now</a>

                    </div>

                </div>

                

                <!-- Game 2 -->

                <div class="game-card animate" style="transition-delay: 0.2s">

                    <div class="game-img">

                        <img src="https://plus.unsplash.com/premium_photo-1731535536714-6d6fd90ae36d?q=80&w=1074&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" alt="Alphabet Zoo">

                        <div class="game-play">

                            <i class="fas fa-play"></i>

                        </div>

                    </div>

                    <div class="game-content">

                        <h3>Alphabet Zoo</h3>

                        <div class="game-rating">

                            <i class="fas fa-star"></i>

                            <i class="fas fa-star"></i>

                            <i class="fas fa-star"></i>

                            <i class="fas fa-star"></i>

                            <i class="fas fa-star"></i>

                            <span> (9,876)</span>

                        </div>

                        <p>Meet funny animals from A to Z! Learn letters and sounds with interactive games for ages 3-6.</p>

                        <a href="techpk" class="btn btn-primary">Play Now</a>

                    </div>

                </div>

                

                <!-- Game 3 -->

                <div class="game-card animate" style="transition-delay: 0.4s">

                    <div class="game-img">

                        <img src="https://plus.unsplash.com/premium_photo-1661428843023-f04de9722c61?q=80&w=1332&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" alt="Science Explorers">

                        <div class="game-play">

                            <i class="fas fa-play"></i>

                        </div>

                    </div>

                    <div class="game-content">

                        <h3>Science Explorers</h3>

                        <div class="game-rating">

                            <i class="fas fa-star"></i>

                            <i class="fas fa-star"></i>

                            <i class="fas fa-star"></i>

                            <i class="fas fa-star"></i>

                            <i class="far fa-star"></i>

                            <span> (7,654)</span>

                        </div>

                        <p>Conduct fun experiments and discover amazing science facts! Designed for ages 7-12.</p>

                        <a href="techpk" class="btn btn-primary">Play Now</a>

                    </div>

                </div>

            </div>

        </div>

    </section>


    <!-- Videos Section -->

    <section class="videos" id="videos">

        <div class="container videos-container">

            <h2>Top Videos for Kids</h2>

            <p class="subtitle" style="text-align: center; max-width: 800px; margin: 0 auto 40px;">The most watched educational videos by children worldwide</p>

            

            <div class="videos-grid">

                <!-- Video 1 -->

                <div class="video-card animate">

                    <div class="video-thumbnail">

                        <img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTxVsI0l8IIEX4N1biwF5PqjFnPXy_xUZn2zQ&s" alt="ABC Song">

                        <div class="video-play">

                            <i class="fas fa-play"></i>

                        </div>

                    </div>

                    <div class="video-info">

                        <h3><a href="techpk" style="text-decoration: none; color: black;">ABC Song with Cute Animals</a></h3>

                        <div class="video-stats">

                            <span><i class="fas fa-eye"></i> 45M views</span>

                            <span><i class="fas fa-thumbs-up"></i> 98%</span>

                        </div>

                    </div>

                </div>

                

                <!-- Video 2 -->

                <div class="video-card animate" style="transition-delay: 0.1s">

                    <div class="video-thumbnail">

                        <img src="https://i.ytimg.com/vi/VxqQ7Hh9c_U/maxresdefault.jpg" alt="Counting Fun">

                        <div class="video-play">

                            <i class="fas fa-play"></i>

                        </div>

                    </div>

                    <div class="video-info">

                        <h3><a href="techpk" style="text-decoration: none; color: black;">Counting 1-100 with Dinosaurs</a></h3>

                        <div class="video-stats">

                            <span><i class="fas fa-eye"></i> 32M views</span>

                            <span><i class="fas fa-thumbs-up"></i> 97%</span>

                        </div>

                    </div>

                </div>

                

                <!-- Video 3 -->

                <div class="video-card animate" style="transition-delay: 0.2s">

                    <div class="video-thumbnail">

                        <img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQvCvIuQvC25UOuGklTre8VoB6UTnBm993uOg&s" alt="Science Experiments">

                        <div class="video-play">

                            <i class="fas fa-play"></i>

                        </div>

                    </div>

                    <div class="video-info">

                        <h3><a href="techpk" style="text-decoration: none; color: black;">10 Cool Science Experiments</a></h3>

                        <div class="video-stats">

                            <span><i class="fas fa-eye"></i> 28M views</span>

                            <span><i class="fas fa-thumbs-up"></i> 99%</span>

                        </div>

                    </div>

                </div>

                

                <!-- Video 4 -->

                <div class="video-card animate" style="transition-delay: 0.3s">

                    <div class="video-thumbnail">

                        <img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ5uA2_wQS4MATb_khs047NylhiFcNZbgmMdw&s" alt="Nursery Rhymes">

                        <div class="video-play">

                            <i class="fas fa-play"></i>

                        </div>

                    </div>

                    <div class="video-info">

                        <h3><a href="techpk" style="text-decoration: none; color: black;">Nursery Rhymes Collection</a></h3>

                        <div class="video-stats">

                            <span><i class="fas fa-eye"></i> 65M views</span>

                            <span><i class="fas fa-thumbs-up"></i> 96%</span>

                        </div>

                    </div>

                </div>

            </div>

        </div>

    </section>


    <!-- Categories Section -->

    <section class="categories" id="categories">

        <div class="container">

            <h2>Explore Categories</h2>

            <p class="subtitle" style="text-align: center; max-width: 800px; margin: 0 auto 40px;">Find games and videos by your child's interests</p>

            

            <div class="categories-grid">

                <!-- Category 1 -->

                <div class="category-card animate">

                    <div class="category-icon">

                        <i class="fas fa-calculator"></i>

                    </div>

                    <h3><a href="techpk" style="text-decoration: none; color: black;">

Math</h3></a>

                    <p>Numbers, counting, and problem solving</p>

                </div>

                

                <!-- Category 2 -->

                <div class="category-card animate" style="transition-delay: 0.1s">

                    <div class="category-icon">

                        <i class="fas fa-book-open"></i>

                    </div>

                    <h3><a href="techpk" style="text-decoration: none; color: black;">Reading</a></h3>

                    <p>ABCs, phonics, and storytelling</p>

                </div>

                

                <!-- Category 3 -->

                <div class="category-card animate" style="transition-delay: 0.2s">

                    <div class="category-icon">

                        <i class="fas fa-flask"></i>

                    </div>

                    <h3><a href="techpk" style="text-decoration: none; color: black;">Science</a></h3>

                    <p>Experiments and discoveries</p>

                </div>

                

                <!-- Category 4 -->

                <div class="category-card animate" style="transition-delay: 0.3s">

                    <div class="category-icon">

                        <i class="fas fa-globe-americas"></i>

                    </div>

                    <h3><a href="techpk" style="text-decoration: none; color: black;">World</a></h3>

                    <p>Countries, cultures, and animals</p>

                </div>

                

                <!-- Category 5 -->

                <div class="category-card animate" style="transition-delay: 0.4s">

                    <div class="category-icon">

                        <i class="fas fa-paint-brush"></i>

                    </div>

                    <h3><a href="techpk" style="text-decoration: none; color: black;">Art</a></h3>

                    <p>Drawing, coloring, and crafts</p>

                </div>

                

                <!-- Category 6 -->

                <div class="category-card animate" style="transition-delay: 0.5s">

                    <div class="category-icon">

                        <i class="fas fa-music"></i>

                    </div>

                    <h3><a href="techpk" style="text-decoration: none; color: black;">Music</a></h3>

                    <p>Songs, rhythms, and instruments</p>

                </div>

            </div>

        </div>

    </section>


    <!-- Testimonials Section -->

    <section class="testimonials" id="testimonials">

        <div class="container">

            <h2>What Kids Say</h2>

            <p class="subtitle" style="text-align: center; max-width: 800px; margin: 0 auto 40px;">Hear from our young users about their favorite games and videos</p>

            

            <div class="testimonial-slider">

                <!-- Testimonial 1 -->

                <div class="testimonial active">

                    <img src="https://randomuser.me/api/portraits/lego/1.jpg" alt="Liam" class="testimonial-img">

                    <p class="testimonial-text">"I love the dinosaur counting game! It's so fun and now I can count to 100 all by myself!"</p>

                    <p class="testimonial-author">- Liam</p>

                    <p class="testimonial-age">Age 5</p>

                </div>

                

                <!-- Testimonial 2 -->

                <div class="testimonial">

                    <img src="https://randomuser.me/api/portraits/lego/5.jpg" alt="Sophia" class="testimonial-img">

                    <p class="testimonial-text">"The science experiments video is my favorite! I did the volcano one with my dad and it was awesome!"</p>

                    <p class="testimonial-author">- Sophia</p>

                    <p class="testimonial-age">Age 7</p>

                </div>

                

                <!-- Testimonial 3 -->

                <div class="testimonial">

                    <img src="https://randomuser.me/api/portraits/lego/3.jpg" alt="Ethan" class="testimonial-img">

                    <p class="testimonial-text">"I watch the ABC animals video every day! The lion is my favorite letter L."</p>

                    <p class="testimonial-author">- Ethan</p>

                    <p class="testimonial-age">Age 3</p>

                </div>

                

                <div class="testimonial-nav">

                    <div class="testimonial-dot active" data-index="0"></div>

                    <div class="testimonial-dot" data-index="1"></div>

                    <div class="testimonial-dot" data-index="2"></div>

                </div>

            </div>

        </div>

    </section>


    <!-- CTA Section -->

    <section class="cta">

        <div class="container">

            <h2>Ready for Unlimited Fun & Learning?</h2>

            <p>Join thousands of happy kids enjoying our safe, educational games and videos. Start your free trial today!</p>

            <a href="techpk" class="btn"><i class="fas fa-rocket"></i> Get Started</a>

        </div>

    </section>


    <!-- Footer -->

    <footer>

        <div class="container">

            <div class="footer-container">

                <div class="footer-about">

                    <div class="footer-logo">

                        <img src="https://img.icons8.com/color/48/000000/children.png" alt="KidsFunWorld Logo">

                        <h2>Kids<span style="color: #4ECDC4">Fun</span>World</h2>

                    </div>

                    <p>Making learning fun through games and videos since 2018. Our content is COPPA compliant and kid-safe.</p>

                    <div class="social-links">

                        <a href="techpk"><i class="fab fa-facebook-f"></i></a>

                        <a href="techpk"><i class="fab fa-youtube"></i></a>

                        <a href="techpk"><i class="fab fa-instagram"></i></a>

                        <a href="techpk"><i class="fab fa-pinterest-p"></i></a>

                    </div>

                </div>

                

                <div class="footer-links">

                    <h3>Quick Links</h3>

                    <ul>

                        <li><a href="#home">Home</a></li>

                        <li><a href="#games">Popular Games</a></li>

                        <li><a href="#videos">Top Videos</a></li>

                        <li><a href="#categories">Categories</a></li>

                        <li><a href="techpk">Parent Resources</a></li>

                        <li><a href="techpk">Safety Info</a></li>

                    </ul>

                </div>

                

                <div class="footer-contact">

                    <h3>Contact Us</h3>

                    <p><i class="fas fa-map-marker-alt"></i> 123 Play Street, Fun City</p>

                    <p><i class="fas fa-phone"></i> (123) 456-7890</p>

                    <p><i class="fas fa-envelope"></i> hello@kidsfunworld.com</p>

                    <p><i class="fas fa-clock"></i> Mon-Fri: 8AM - 6PM</p>

                </div>

            </div>

            

            <div class="footer-bottom">

                <p>&copy; 2023-2025 KidsFunWorld. All Rights Reserved. | <a href="techpk" style="color: #adb5bd;">Privacy Policy</a> | <a href="techpk" style="color: #adb5bd;">Terms of Service</a> | <a href="techpk" style="color: #adb5bd;">COPPA Compliance</a></p>

            </div>

        </div>

    </footer>


    <script>

        // Mobile Menu Toggle

        const mobileMenuBtn = document.getElementById('mobileMenuBtn');

        const nav = document.getElementById('nav');

        

        mobileMenuBtn.addEventListener('click', () => {

            nav.classList.toggle('active');

            mobileMenuBtn.innerHTML = nav.classList.contains('active') ? 

                '<i class="fas fa-times"></i>' : '<i class="fas fa-bars"></i>';

        });

        

        // Smooth Scrolling for Anchor Links

        document.querySelectorAll('a[href^="#"]').forEach(anchor => {

            anchor.addEventListener('click', function (e) {

                e.preventDefault();

                

                if (nav.classList.contains('active')) {

                    nav.classList.remove('active');

                    mobileMenuBtn.innerHTML = '<i class="fas fa-bars"></i>';

                }

                

                document.querySelector(this.getAttribute('href')).scrollIntoView({

                    behavior: 'smooth'

                });

            });

        });

        

        // Testimonial Slider

        const testimonials = document.querySelectorAll('.testimonial');

        const dots = document.querySelectorAll('.testimonial-dot');

        let currentTestimonial = 0;

        

        function showTestimonial(index) {

            testimonials.forEach(testimonial => testimonial.classList.remove('active'));

            dots.forEach(dot => dot.classList.remove('active'));

            

            testimonials[index].classList.add('active');

            dots[index].classList.add('active');

            currentTestimonial = index;

        }

        

        dots.forEach(dot => {

            dot.addEventListener('click', () => {

                showTestimonial(parseInt(dot.getAttribute('data-index')));

            });

        });

        

        // Auto-rotate testimonials

        setInterval(() => {

            currentTestimonial = (currentTestimonial + 1) % testimonials.length;

            showTestimonial(currentTestimonial);

        }, 5000);

        

        // Scroll Animation

        const animateElements = document.querySelectorAll('.animate');

        

        function checkScroll() {

            animateElements.forEach(element => {

                const elementTop = element.getBoundingClientRect().top;

                const windowHeight = window.innerHeight;

                

                if (elementTop < windowHeight - 100) {

                    element.classList.add('show');

                }

            });

        }

        

        // Initial check

        checkScroll();

        

        // Check on scroll

        window.addEventListener('scroll', checkScroll);

        

        // Bounce animation for fun elements

        const bounceElements = document.querySelectorAll('.bounce');

        

        setInterval(() => {

            bounceElements.forEach(el => {

                el.classList.add('bouncing');

                setTimeout(() => {

                    el.classList.remove('bouncing');

                }, 2000);

            });

        }, 6000);

    </script>

</body>

</html>


Post a Comment

0 Comments