I am having an issue with my external style sheet named style.css.
style.css
#topbar
{
background-color: red;
width: 1000px;
height: 40px;
}
body{
background-color: green;
}
I have tried calling this style.css from the root folder, but it's not working. I even copied the style.css into both the internal and root folders, but it still won't load.
<html>
<head>
<title>My Website/title>
<meta charset="utf-8" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
</body>
</html>