Custom Scroll Bar Code Placement

I have html for a custom scroll bar that I want to include on my site.

Where would I paste this html so that the scroll bar shows up?

My code is:

body::-webkit-scrollbar {
    width: 1em;
}
body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
body::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}


html {
  background: lightgrey;
  height: 100%;
  overflow: hidden;
}
body {
  height: 100%;
  background: whitesmoke;
  overflow: scroll;
  max-width: 250px;
  margin: 0 auto;
  padding: 3em;
  font: 100%/1.4 serif;
  border: 1px solid rgba(0,0,0,0.25)
}
p {
  margin: 0 0 1.5em;
}
845 Views
Message 1 of 2
Report
1 REPLY 1
Square

You can use the Embed Code element, or you can put the code in Settings>SEO>Header area. Just make sure to save and publish. 

841 Views
Message 3 of 2
Report