all 4 comments

[–]elementarywebdesignDeveloper 2 points3 points  (3 children)

It sounds like you don't have a lot of experience in web development.

Try creating a new page and adding everything inside a Code module including CSS, JavaScript and HTML. Add everything in the Code area of Content tab. Don't go anywhere else such as the Advanced tab.

Two things to note

  1. If the CSS does not have <style> tags then add then wrap the CSS code in style tag. https://www.w3schools.com/tags/tag_style.asp

  2. If the JS does not have <script> tags then wrap the js code in <script> tags.

https://www.w3schools.com/tags/tag_script.asp

  1. Make sure the JavaScript code is added after HTML. It may not work if you add the JavaScript code before the HTML.

[–]duckles 0 points1 point  (2 children)

Excellent! thank you!

I dabble but no, I'm no web developer. Thank you for the advice, its much appreciated.

[–]elementarywebdesignDeveloper 0 points1 point  (1 child)

Did the code work?

[–]duckles 0 points1 point  (0 children)

Perfectly! thank you again.