There are occasions when some websites fail to load their CSS files due to network issues or other reasons, resulting in a page that looks unformatted and unattractive.
I have encountered this issue with previous pages I have worked on as well. Unfortunately, it seems to be beyond the control of developers and designers.
I am considering incorporating a visible note at the top of the page like this:
/*.... header and stuff */
<body>
<h2 id="hiddennote">If you do not see this page properly, please refresh</h2>
/*.... rest of the page .... */
The external stylesheet contains a rule like this:
/* other styles defined */
#hiddennote {display: none;}
In terms of functionality, I believe this solution will be effective. Are there any potential drawbacks?