Copy this script tag and paste in html page to use:
<script src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
crossorigin="anonymous"></script>
{
// Smooth Scrolling
$('#navbar a, .btn').on('click', function (e) {
if (this.hash !== '') {
e.preventDefault();
const hash = this.hash;
$('html, body').animate(
{
scrollTop: $(hash).offset().top - 100,
},
800
);
}
});
}