I have been researching and trying everything to get the css file to link to my html file to no avail. So, I tried something simple and it still doesn't work. Both are in the same file folder.
Could you look at this and tell me what the problem is?
(index.html)
<!doctype html>
<html>
<head>
<title>this website uses external css</title>
<link rel=”stylesheet” type=”text/css” href=”anything.css”>
</head>
<body>
<header>
welcome to the site
</header>
</body>
</html>
(anything.css)
body {background-color: 004800😉
.header{color: ffffff; font-family: arial;}