Koyaka

Accordion

Accordion

A forest is a large area covered with trees, plants, and wildlife that helps balance the ecosystem.
Oceans regulate climate, provide food, and support countless marine species.
Mountains influence weather patterns, store fresh water, and are home to diverse ecosystems.

    <div class="accordion">
        <button class="accordion-trigger">What is a forest?</button>
        <div class="accordion-content">
            A forest is a large area covered with trees, plants, and wildlife
            that helps balance the ecosystem.
        </div>
    </div>

    <div class="accordion">
        <button class="accordion-trigger">Why are oceans important?</button>
        <div class="accordion-content">
            Oceans regulate climate, provide food, and support countless marine
            species.
        </div>
    </div>

    <div class="accordion">
        <button class="accordion-trigger">What role do mountains play?</button>
        <div class="accordion-content">
            Mountains influence weather patterns, store fresh water, and are
            home to diverse ecosystems.
        </div>
    </div>
    

Accordion in Box

A forest is a large area covered with trees, plants, and wildlife that helps balance the ecosystem.
Oceans regulate climate, provide food, and support countless marine species.
Mountains influence weather patterns, store fresh water, and are home to diverse ecosystems.

    <div class="box py-0">
        <div class="accordion">
            <button class="accordion-trigger">What is a forest?</button>
            <div class="accordion-content">
                A forest is a large area covered with trees, plants, and
                wildlife that helps balance the ecosystem.
            </div>
        </div>

        <div class="accordion">
            <button class="accordion-trigger">Why are oceans important?</button>
            <div class="accordion-content">
                Oceans regulate climate, provide food, and support countless
                marine species.
            </div>
        </div>

        <div class="accordion">
            <button class="accordion-trigger">
                What role do mountains play?
            </button>
            <div class="accordion-content">
                Mountains influence weather patterns, store fresh water, and are
                home to diverse ecosystems.
            </div>
        </div>
    </div>