+ 2
Need some help..how do i link html with external css file.Evertime i try its unresponsive and i end up giving up.Any help please
2 Antworten
+ 3
Share that code in Sololearn's Code Playground as a Web code or share a link to it hosted anywhere else. It would be nice to reproduce the problem and troubleshoot it directly.
Without reproducing the problem, the following checklist should help:
- check the network tab of your browser's developer tools. Maybe your link to the CSS document is broken or no HTTP request is fired to get it.
- if you're using link, check that rel="stylesheet" type="text/css" without any subtle spelling errors. Any typo like rel="stylessheet" or type="text/csss" can make the link tag meaningless and cause the browser to completely ignore it.
- Run your site with a validator like: https://validator.w3.org/ or https://jigsaw.w3.org/css-validator/ the CSS validator may identify some common problems or broken links.
+ 1
Thanks so much..That was of great help. I realised it was a typo error..I appreciate