https://i.sstatic.net/uKcMs.jpgMy attempts to change the background color in a simple HTML page using a CSS style sheet have been unsuccessful. Despite no errors being present in my code, I am encountering this strange issue.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Document</title>
<link rel="stylesheet" type="text/css" href="Website/css/style.css" />
</head>
<body>
<p>This is some content in the body</p>
</body>
</html>
In an effort to address this issue, here is what I have included in my style.css file:
body {
background-color:black;
}
Any assistance offered will be greatly appreciated! Thank you!