Issue
The Folder Structure of the project
rel="nofollow noreferrer">How I linked this
So I am trying to Link local css file to thymeleaf but it has not been working. I was wondering how to link css to thymeleaf in this case. Thank you.
Solution
You are using href="@{/css/signup.css}"
, but you need to use th:href
like this:
<link rel="stylesheet" th:href="@{/css/signup.css}" />
Answered By - Wim Deblauwe
Answer Checked By - Dawn Plyler (JavaFixing Volunteer)