In this tutorial, I will show you how to link CSS and JS files.
First of all, open the template.liquid file and navigate to the inner head tag.
To link a CSS file, add this code:
<linkrel="stylesheet" href="{{'theme.css'|asset_url}}" type="text/css")">
And add the following code to link JS file:
<script src="{{'theme.js'|asset_url}}" defer="defer"></script>
Now you are done. Run your app to test this code.
Top comments (0)