I have a question regarding my HTML5 web page and the way I am referencing a CSS file in the head
tag. Currently, I have it set up like this:
<head>
<link rel="stylesheet" href="css/style.css" type="text/css"/>
</head>
However, it doesn't seem to be working properly. Surprisingly, when I move the same link tag to the body
, it works fine. I've seen examples online that suggest it should be specified in the head
tag. Can someone please assist me with this issue?