Possible Duplicate:
What's the difference if I put css file inside <head> or <body>?
usually, external css file loading code is put on header of html.
<head>
...
<link href="/uploadify/uploadify.css" type="text/css" rel="stylesheet" />
...
</head>
but, sometime I should put my css loading code in body tag, I mean..
<body>
...
<link href="/uploadify/uploadify.css" type="text/css" rel="stylesheet" />
...
</body>
so my question is, is it okay to put my css loading code in body tag?