When dividing my web pages into sections, such as headers and content, I find it challenging to avoid placing links to external stylesheets within the <body>
tags.
I prefer not to combine all styles into one large file or include all stylesheets in the <head>
tag because it would load unnecessary page-specific stylesheets.
Is it acceptable to embed a stylesheet within the <body>
tag in this scenario? Are there any better alternatives?