I am having the weirdest problem. I can’t seem to insert a CSS file for usage in an HTML file properly. This is the exact code I’m using:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Voetsjoeba.Main</title>
<link href="stylesheets/main.css" rel="stylesheet" type="text/css" />
<meta http-equiv="Content-Type" content="text/html; charset=windows-1250" />
<script type="text/javascript">
function openInNewWindow(url){
window.open(url,"");
}
</script>
</head>
I am certain the href is correct. It just doesn’t work. In IE, it works fine, but not in Mozilla. Now the weirdest thing is (I’ve discussed this with ahmed) that I’m using the exact same code as ahmed uses on his site, and it’s still not working although ahmed’s site works fine in Mozilla and I’m using the exact same code and doctype as he is.
So my question is … WTF !?