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 | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 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

30th Mar 2021, 8:44 PM
George Williams
George Williams - avatar
2 Answers
+ 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.
30th Mar 2021, 10:35 PM
Josh Greig
Josh Greig - avatar
+ 1
Thanks so much..That was of great help. I realised it was a typo error..I appreciate
30th Mar 2021, 10:50 PM
George Williams
George Williams - avatar