Bootstrap documentation offers only HTML code of components. Even if implement only one component, one is forced to request both of bootstrap.min.css
and bootstrap.bundle.min.js
.
Is there any possibility to get Bootstrap component as HTML and only corresponding CSS and JS code? Something like:
<script>...</script>
<style>...</style>
<div class="accordion">...</div>
How would you achieve this?