1
Your server is serving .css
files with MIME type text/plain
. It should be text/css
. Just tell your server administrator and they will fix it for you.
If you see the console in chrome, it says:
Resource interpreted as Stylesheet but transferred with MIME type
text/plain
.
And in firefox:
The stylesheet was not loaded because its MIME type,
"text/plain"
, is not"text/css"
.
0
You have several errors, including the CSS part:
Line 23, Column 69: end tag for “link” omitted, but OMITTAG NO was
specifiedYou may have neglected to close an element, or perhaps you meant to
“self-close” an element, that is, ending it with “/>” instead of “>”.
Anyways, despite the CSS line, take a look at the results and try to fix all errors, these are very easy fixes and will make your page work properly
- [Answer]-Django WizardView with checkboxes in Form causes "ValueError too many values to unpack (expected 2)"
- [Answer]-Access Many-to-Many relationship data in template
- [Answer]-Celery chain tasks
- [Answer]-Django JsonResponse from POST file upload