php-mvc
php-mvc copied to clipboard
How to include css file
How to include css file in base.html
I created style.css file in public/assets/css/style.css
i want to link this file into base.html
If i include /assets/css/style.css this way
then in /home route it worked But if i use /product/create then it doesn’t work
You need to start the path with a slash so it's route relative:
<link rel="stylesheet" href="/assets/css/style.css">
You need to start the path with a slash so it's route relative:
<link rel="stylesheet" href="/assets/css/style.css">
Not working brother
Are you running the code in a subfolder? Then you need to include that too