Accordion

Use the below code to display accordion:

<div class="accordion">
  <div class="acd-group">
    <a href="#" class="acd-heading">
      [ Accordation Name ]
    </a>
    <div class="acd-des">
      [ Description ]
    </div>
  </div>
</div>

There Are Many types of accordation styles like Boxed Accordation , Bordared Accordation , Dark background Accordation , Accordion With Arrow Icons.

NoteIf you want to use accordion with dark background then you have to add .text-white class in main section tag.

Suggest Edit