I purchased a template of an HTML landing page online and I'm trying to integrate it in my current theme in Shopify. The landing page contains html, css and js that I have to integrate. I read a previous thread that explained that I have to upload the css and js files to the "Assets" folder and add those lines to the "theme.liquid" file :
{{ 'script.js.liquid' | asset_url | script_tag }}
{{ 'style.css.liquid' | asset_url | stylesheet_tag }}
Then I created a page template and copy pasted the html code, but no styling comes out only plain html. I was wondering what I was doing wrong. Do I have to add some code to call out the css and js files into the newly created page or just adding the above line of codes in the "theme.liquid file is sufficient?
Thank you in advance for your help.