Smooth Scroll

This is how you can add a smooth scrolling effect to your page

Example

The CSS

This going into the HEAD of your webpage (in between <head> and </head> tags)

html {
  scroll-behavior: smooth;
}

The JavaScript

This going into the BODY or HEAD of your webpage (as long as it's in between <script> and </script> tags)

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"> </script>