[Answer]-The LINK CSS in the HTML is no use online? Everything is all right

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👍

See Validator results

You have several errors, including the CSS part:

Line 23, Column 69: end tag for “link” omitted, but OMITTAG NO was
specified

You 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

Leave a comment