I recently tried working with CSS, and I am having a problem implementing some of the stuff. First, the code.
CSS File:
Code:<style type="text/css">
<!--
body { background=black;
color:white;
lang=EN-US;
tab-interval:.5in; }
h1 { text-align:center;
font-size:36.0pt;
font-family:Arial;
font-weight:bold; }
h2 { text-align:center;
color:red; }
h3 { text-align:center;
color:blue; }
-->
</style>
HTML File:
Code:<html>
<head>
<link media=screen rel=stylesheet href="library.css" type="text/css">
</head>
<body>
<h1>Main Header</h1>
<h2>Specific Information About Header</h2>
<h3>Personal Notes About Header</h3>
<p>Text. Tons of text. No special formating what so ever.</p>
</body>
</html>
For some reason, I can't get the CSS to work at all. It is as if the link was never added. However, if I copy the style information to the main HTML document, it comes out perfectly. Any suggestions would be greatly appreciative.